mirror of https://github.com/nate2014jatc/AGSTATUS
2020-11-06 00:50
This commit is contained in:
parent
acef35b038
commit
fae591be64
1
Gemfile
1
Gemfile
|
@ -25,3 +25,4 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do
|
|||
end
|
||||
# Performance-booster for watching directories on Windows
|
||||
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
|
||||
gem "jekyll-paginate", group: :jekyll_plugins
|
||||
|
|
|
@ -257,6 +257,7 @@ PLATFORMS
|
|||
DEPENDENCIES
|
||||
github-pages
|
||||
jekyll-feed (~> 0.12)
|
||||
jekyll-paginate
|
||||
tzinfo (~> 1.2)
|
||||
tzinfo-data
|
||||
wdm (~> 0.1.1)
|
||||
|
|
|
@ -10,4 +10,8 @@ github_username: nate2014jatc
|
|||
# Build settings
|
||||
plugins:
|
||||
- jekyll-feed
|
||||
- jekyll-paginate
|
||||
theme: jekyll-theme-hacker
|
||||
host: 0.0.0.0
|
||||
paginate: 5
|
||||
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
---
|
||||
layout: 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.
|
||||
Congratulations.
|
||||
|
|
|
@ -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>
|
Loading…
Reference in New Issue