forked from thundergolfer/junior-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
55 lines (52 loc) · 1.78 KB
/
portfolio.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: default_design
title: Sketch & Design
tags: portfolio
permalink: /design/
js:
- js/util_buttons.js
---
<ul class="projects clearfix">
{% for post in site.portfolio %}
<li>
<div class="project"
style='background-image: url(/images/portfolio/thumbs/{{ post.uid }}.jpg)'>
<a class="cover" href="{{ post.url }}">
<div class="project-details">
<span>
{{ post.title }}
</span>
<span>
<i>{{ post.worktype }}</i>
</span>
</div>
</a>
<!-- {% if post.opensource %}
{% if post.blackbg %}
<span class="github-icon light"></span>
{% else %}
<span class="github-icon"></span>
{% endif %}
{% endif %} -->
<!-- {% if post.progress %}
<span class="progress">
<span class="under-construction"></span>
<span class="progress-bar" style="width: {{ post.progress }}%"></span>
</span>
{% endif %} -->
<!-- <img class="thumb" src="/images/portfolio/thumbs/{{ post.uid }}.jpg" /> -->
<div class="aspect-two-one"></div>
</div>
</li>
{% endfor %}
</ul>
<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 %}