Missed a Jekyll file (index.html in the root, which also needed to be removed from .gitignore)
This commit is contained in:
parent
8dfaf389f8
commit
bd4d1da3db
3 changed files with 27 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -7,7 +7,6 @@
|
|||
.idea
|
||||
.project
|
||||
.settings
|
||||
index.html
|
||||
node_modules
|
||||
npm-debug.log
|
||||
/books
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
PCjs: The Original IBM PC in Your Browser
|
||||
---
|
||||
layout: page
|
||||
title: "PCjs: The Original IBM PC in Your Browser"
|
||||
permalink: /
|
||||
---
|
||||
|
||||
Welcome to [PCjs](/docs/about/pcjs/), the first IBM PC simulation to run in your web browser without any plugins.
|
||||
|
|
|
|||
23
index.html
Normal file
23
index.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div class="home">
|
||||
|
||||
<h1 class="page-heading">Posts</h1>
|
||||
|
||||
<ul class="post-list">
|
||||
{% for post in site.posts %}
|
||||
<li>
|
||||
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
|
||||
|
||||
<h2>
|
||||
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
||||
</h2>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
|
||||
|
||||
</div>
|
||||
Loading…
Reference in a new issue