-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 2.18 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 2.18 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
44
45
46
47
48
49
---
---
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1">
<title>Carson Shook</title>
{% include head.html %}
</head>
<body id="index">
{% include navigation.html %}
<main>
<br/>
<div class="centering">
<a href="/Adium-Theme-Night-Mode" class="nolinkstyle"><img src="img/adiumnightmode.jpg" class="featuredproject" alt="Adium Night Mode Theme"/></a><!--
--><a href="/Winclipper" class="nolinkstyle"><img src="img/winclipperblock.png" class="featuredproject" alt="Winclipper, a better clipboard manager for Windows"/></a><!--
--><a href="/StupidSimpleUpdater" class="nolinkstyle"><img src="img/ssupblock.png" class="featuredproject" alt="StupidSimpleUpdater. An easy to use, msi-based updater."/></a>
<!-- <a href="/BetterPonymotes-for-Safari" class="nolinkstyle"><img src="img/betterponymotesblock.jpg" class="featuredproject" alt="BetterPonymotes now for Safari"/></a> -->
</div>
<br/>
<br/>
<br/>
<div id="latestpost">
<div class="content-wrap">
<div class="centering">
<h1>Latest Blog Post</h1>
</div>
{% for post in site.posts limit:1 %}
<a href="{{ post.url }}" class="nolinkstyle">
{% if post.image %}
<div class="postblock imagepost">
{% else %}
<div class="postblock">
{% endif %}
<h2 id="latesttitle">{{ post.title }}</h2>
<div class="date">{{ post.date | date: "%B %e, %Y" }}</div>
{% if post.image %}
<img src={{ post.image }} class="postimage">
{% endif %}
<p>{{ post.content | strip_html | truncatewords: 80 }}</p>
</div></a>
{% endfor %}
</div>
</div>
</main>
{% include footer.html %}
</body>
</html>