-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
87 lines (66 loc) · 2.01 KB
/
index.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
layout: default
redirect_from: /blog/
---
<main>
<div class="Any-horInsets">
<div class="PostPreviewList">
<!-- Display featured posts -->
{% for post in site.posts %}
{% if site.featured_posts contains post.uuid %}
<div class="PostPreview PostPreview-featured">
{% include post-featured.html %}
</div>
{% endif %}
{% endfor %}
</div>
{% include ad-hor.html %}
<h2 class="PostLink SectionTitle">Recent Articles</h2>
<div class="PostPreviewList">
<!-- Display the reset of the posts -->
{% for post in site.posts limit: 7 %}
{% unless site.featured_posts contains post.uuid %}
<div class="PostPreview">
{% include post-preview.html %}
</div>
{% endunless %}
{% endfor %}
</div> <!--PostPreviewList-->
<a href="{{ site.url }}/archive/index.html">
<div class="PrimaryButton">
<p>See all {{ site.posts | size }} articles »</p>
</div>
</a>
<h2 class="PostLink SectionTitle">Open Source</h2>
<div class="Any-responsiveCard FeaturedFramework">
<div class="FeaturedFramework_Flex">
<div class="FeaturedFramework_FlexItem" align="center">
<a href="{{ site.url }}/nuke">
<img class="NukeLogo" src="{{ site.url }}/images/nuke_logo.png">
</a>
</div>
<div class="FeaturedFramework_FlexItem">
<a href="{{ site.url }}/nuke">
<h1 class="NukeDescription">A powerful <strong>image loading and caching</strong> system</h1>
</a>
<div class="NukeShare_Icon" align="center">
<iframe src="https://ghbtns.com/github-btn.html?user=kean&repo=Nuke&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>
</div>
</div>
</div>
</div>
</a>
<div class="PostPreviewList">
{% for project in site.data.open-source.projects %}
<div class="PostPreview">
{% include project-preview.html %}
</div>
{% endfor %}
</div> <!--PostPreviewList-->
<a href="https://github.com/kean">
<div class="PrimaryButton">
<p>See all 18 projects »</p>
</div>
</a>
</div>
</main>