-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·43 lines (40 loc) · 1.54 KB
/
index.html
File metadata and controls
executable file
·43 lines (40 loc) · 1.54 KB
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
---
layout: content
title: Home
---
<div class="contentColumn">
<h2>Latest Release</h2>
{% assign first_post = site.categories.releases.first %}
{% if first_post %}
<div class="blogPost">
<h3><a href="{{ first_post.url }}">{{ first_post.title }}</a> <span> - {{ first_post.date | date_to_string }}</span></h3>
<h4>By {{ first_post.author }} on {{ first_post.category }}</h4>
{{ first_post.content }}
</div>
{% else %}
<p>No releases as of yet.</p>
{% endif %}
<h2>Latest Blog post</h2>
{% assign first_post = site.posts.first %}
{% for post in site.posts %}
{% if post.category != "Releases" %}
{% assign first_post = post %}
{% break %}
{% endif %}
{% endfor %}
{% if first_post %}
<div class="blogPost">
<h3><a href="{{ first_post.url }}">{{ first_post.title }}</a> <span> - {{ first_post.date | date_to_string }}</span></h3>
<h4>By {{ first_post.author }} on {{ first_post.category }}</h4>
{{ first_post.content }}
</div>
{% else %}
<p>No blog posts yet.</p>
{% endif %}
</div>
<div class="tweetsColumn" id="twitter_div">
<h2>Latest Tweets</h2>
<a class="twitter-timeline" href="https://twitter.com/lmmenge" data-widget-id="393182551876960256">Tweets by @lmmenge</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<div class="clear"></div>