mirror of
https://github.com/ctruLua/ctrulua.github.io.git
synced 2025-10-27 16:39:30 +00:00
Quick test with Jekyll
This commit is contained in:
parent
2653e46597
commit
c2d62372ef
12 changed files with 600 additions and 8 deletions
28
index.html
28
index.html
|
|
@ -1,8 +1,20 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>WIP</title>
|
||||
</head>
|
||||
<body>
|
||||
<b>WIP</b>
|
||||
</body>
|
||||
</html>
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div class="home">
|
||||
|
||||
<h1>Posts</h1>
|
||||
|
||||
<ul class="posts">
|
||||
{% for post in site.posts %}
|
||||
<li>
|
||||
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
|
||||
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue