2020-11-06 00:50

This commit is contained in:
Rax Ventus 2020-11-06 00:50:05 -07:00
parent acef35b038
commit fae591be64
6 changed files with 24 additions and 7 deletions

View File

@ -25,3 +25,4 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do
end end
# Performance-booster for watching directories on Windows # Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
gem "jekyll-paginate", group: :jekyll_plugins

View File

@ -257,6 +257,7 @@ PLATFORMS
DEPENDENCIES DEPENDENCIES
github-pages github-pages
jekyll-feed (~> 0.12) jekyll-feed (~> 0.12)
jekyll-paginate
tzinfo (~> 1.2) tzinfo (~> 1.2)
tzinfo-data tzinfo-data
wdm (~> 0.1.1) wdm (~> 0.1.1)

View File

@ -10,4 +10,8 @@ github_username: nate2014jatc
# Build settings # Build settings
plugins: plugins:
- jekyll-feed - jekyll-feed
- jekyll-paginate
theme: jekyll-theme-hacker theme: jekyll-theme-hacker
host: 0.0.0.0
paginate: 5

View File

@ -1,6 +1,8 @@
---
layout: post layout: post
title: "First Post" title: "First Post"
date: 2020-11-05 23:40:30 -0000 date: 2020-11-05 23:40
---
This is the first post to this new micro-blog. This is the first post to this new micro-blog.
Congratulations. Congratulations.

15
index.html Normal file
View File

@ -0,0 +1,15 @@
---
layout: default
---
<h1>It is currently {{ site.time | date: "%m/%d/%Y %H:%M" }}</h1>
<ul>
{% for post in site.posts %}
<a href="{{ post.url }}">
<h2>{{ post.title }}</h2>
<p>{{ post.date | date: "%m/%d/%Y %H:%M"}}</p>
<p>{{ page.excerpt | truncate_words: 5 }}</p>
</a>
<hr>
{% endfor %}
</ul>

View File

@ -1,6 +0,0 @@
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: home
---