mirror of
https://github.com/rvtr/ninjacheetah.github.io.git
synced 2025-06-18 19:15:31 -04:00
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
---
|
|
title: Contributions
|
|
layout: default
|
|
---
|
|
|
|
<script src="/projects/index.js"></script>
|
|
<div id="projectList">
|
|
<div class="banner">
|
|
<img class="banner-image" src="/assets/banner/projects.svg" alt="an awesome banner. too bad it isn't loading for you :(">
|
|
</div>
|
|
<noscript><h2>this page needs JavaScript to work</h2></noscript>
|
|
<h1 class="text-center">things i've contributed to.</h1>
|
|
<div class="container" style="padding-bottom: 2rem">
|
|
<div class="row">
|
|
{% for item in site.data.projects-contributed %}
|
|
<div class="col-sm-3">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h5 class="card-title">{{ item.truename }}</h5>
|
|
<h6 class="card-subtitle mb-2 text-muted">{{ item.author }}</h6>
|
|
<p class="card-text">{{ item.desc }}</p>
|
|
<a href="https://github.com/{{ item.author }}/{{ item.name }}" class="btn btn-primary">Source</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div class="container text-center">
|
|
<h5>Also see</h5>
|
|
<h5><a href="/projects/maintained/">Maintained Projects</a> | <a href="/projects/archived/">Archived Projects</a></h5>
|
|
</div>
|
|
</div>
|
|
|