- Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblog.html
executable file
·75 lines (60 loc) · 1.97 KB
/
blog.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
<!DOCTYPE HTML>
<!--
Massively by HTML5 UP
html5up.net | @ajlkn
Jekyll integration by somiibo.com
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
{% include head.html %}
</head>
<bodyclass="is-loading">
<!-- Wrapper -->
<divid="wrapper" class="fade-in">
<!-- Header -->
<headerid="header">
<ahref="{{ "/" | absolute_url }}" class="logo">{{site.title}}</a>
</header>
<!-- Nav -->
<navid="nav">
{% include nav.html %}
<ulclass="icons">
<li><ahref="https://twitter.com/{{site.twitter}}" class="icon fa-twitter" rel="nofollow"><spanclass="label">Twitter</span></a></li>
<li><ahref="https://github.com/{{site.github}}" class="icon fa-github" rel="nofollow"><spanclass="label">GitHub</span></a></li>
</ul>
</nav>
<!-- Main -->
<divid="main">
<articleclass="post featured">
<headerclass="major">
<h2><ahref="#">Research News</a></h2>
<p>See below for the latest news from our reserach group</p>
</header>
</article>
<!-- Post -->
<sectionclass="posts">
{% for post in site.posts %}
{% assign mod4 = forloop.index | modulo: 4 %}
<article>
<header>
<spanclass="date">{{ post.date | date_to_string }}</span>
<h2><ahref="{{ post.url | absolute_url }}">{{ post.title }}</h2>
</header>
<ahref="{{ post.url | absolute_url }}" class="image fit"><imgsrc="{{ post.image | absolute_url }}" alt="" /></a>
<p>{{ post.excerpt }}</p>
<ulclass="actions">
<li><ahref="{{ post.url | absolute_url }}" class="button">Full Story</a></li>
</ul>
</article>
{% endfor %}
</section>
</div>
<!-- Footer -->
{% include foot.html %}
</div>
<!-- Scripts -->
{% include scripts-main.html %}
{% include tracking.html %}
</body>
</html>