Browse Source

2020-11-06 00:50

pull/1/head
Rax Ventus 3 years ago
parent
commit
fae591be64
  1. 1
      Gemfile
  2. 1
      Gemfile.lock
  3. 4
      _config.yml
  4. 4
      _posts/2020-11-05-First-Post.md
  5. 15
      index.html
  6. 6
      index.md

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

1
Gemfile.lock

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

4
_config.yml

@ -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

4
_posts/2020-11-05-First-Post.md

@ -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.

15
index.html

@ -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>

6
index.md

@ -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
---
Loading…
Cancel
Save