forked from thundergolfer/junior-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
projects.html
30 lines (26 loc) · 1008 Bytes
/
projects.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
layout: default
title: Projects & Open-Source
tags: projects
permalink: /projects/
js:
- js/gh_projects.js
- js/util_buttons.js
---
<div id="display-projects"></div>
<div class="circle-button">
<div class="top-circle" data-sr-id="80" style="; visibility: visible; -webkit-transform: scale(1); opacity: 1;transform: scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<img src="{{ site.url }}/images/logos/top.png">
</div>
</div>
{% for js in page.js %}
<script type="text/javascript">
{% include {{ js }} %}
</script>
{% endfor %}
<script src="https://cdn.jsdelivr.net/emojione/3.0.3/lib/js/emojione.min.js"></script>
<script type="text/javascript">
$(function() {
$("#display-projects").getRepos("thundergolfer"); /* Add your github username. */
});
</script>