alterNERDtive.github.io/_layouts/sidebar.html

87 lines
3.2 KiB
HTML
Raw Normal View History

2019-01-25 17:35:18 +01:00
{% include header.html %}
2019-01-25 18:49:24 +01:00
{% assign user = site.github.organization_members[0] %}
<div class="d-md-flex">
2019-01-25 19:53:35 +01:00
<div class="flex-self-stretch border-bottom border-md-none border-md-right border-gray-light col-md-5 col-lg-4 col-xl-3 px-4 px-md-6 px-lg-7 py-6">
2019-01-25 18:49:24 +01:00
<img src="{{ user.avatar_url }}" class="circle mb-3" style="max-width: 150px;">
2019-01-25 19:43:22 +01:00
<h1 class="mb-2 lh-condensed">{{ site.title }}</h1>
2019-01-25 18:49:24 +01:00
<p class="mb-3 f4 text-gray">
Hi! I'm Ben. I love two things: bridges and smiling. I'm an aspiring developer who is learning how to use GitHub to build the stuff I wish existed. I'm looking to meet other developers who can help to contribute to the projects I have started.
</p>
<div class="f4 mb-6">
<div class="mb-3">
{% octicon mark-github height:20 class:"mr-1 v-align-middle" aria-label:GitHub %}
<a href="https://github.com/{{ user.login }}">
@{{ user.login }}
</a>
</div>
<div class="mb-3">
{% octicon mail height:20 class:"mr-1 v-align-middle" aria-label:Email %}
<a href="mailto:{{ user.email }}">
{{ site.email }}
</a>
</div>
<div class="">
{% octicon location height:20 class:"mr-1 v-align-middle" aria-label:Location %}
Austin, TX
</div>
</div>
</div>
2019-01-25 19:53:35 +01:00
2019-01-25 19:43:22 +01:00
<div class="bg-gray-light col-md-7 col-lg-8 col-xl-9 px-4 py-6 px-lg-7">
2019-01-25 19:53:35 +01:00
<div class="mx-auto" style="max-width: 900px;">
<h2>My Projects</h2>
<p class="f4 mb-4 text-gray">GitHub repositories that I've contributed to</p>
<div class="d-flex flex-wrap gutter-condensed mb-4">
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include repo-card.html %}
</div>
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include repo-card.html %}
</div>
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include repo-card.html %}
</div>
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include repo-card.html %}
</div>
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include repo-card.html %}
</div>
2019-01-25 19:43:22 +01:00
</div>
2019-01-25 19:53:35 +01:00
<h2>My Interests</h2>
<p class="f4 mb-4 text-gray">Topics that I want to learn more about</p>
<div class="d-flex flex-wrap gutter-condensed mb-4">
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include topic-card.html %}
</div>
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include topic-card.html %}
</div>
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include topic-card.html %}
</div>
2019-01-25 19:43:22 +01:00
</div>
2019-01-25 19:53:35 +01:00
<h2>My Organizations</h2>
<p class="f4 mb-4 text-gray">Teams I belong to</p>
<div class="d-flex flex-wrap gutter-condensed mb-4">
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include org-card.html %}
</div>
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include org-card.html %}
</div>
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include org-card.html %}
</div>
2019-01-25 19:43:22 +01:00
</div>
2019-01-25 19:53:35 +01:00
</div>
2019-01-25 18:49:24 +01:00
</div>
</div>
2019-01-25 17:35:18 +01:00
{% include footer.html %}