Move away from jekyll
This commit is contained in:
16
layout/feed.xml
Normal file
16
layout/feed.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>{{ title }}</title>
|
||||
<link>https://{{ blog_url }}/</link>
|
||||
<link href="https://{{ blog_url }}/" />
|
||||
<description>{{ blog_description }}</description>
|
||||
<author>
|
||||
<name>{{ author_name }}</name>
|
||||
<email>{{ email_user }} [a] {{ email_domain }}</email>
|
||||
<uri>https://{{ blog_url }}/about.html</uri>
|
||||
</author>
|
||||
|
||||
{{ content }}
|
||||
</channel>
|
||||
</rss>
|
||||
11
layout/item.html
Normal file
11
layout/item.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<div class="post-list-item">
|
||||
<h3><a class="post-title" href="/{{ slug }}.html">{{ title }}</a></h3>
|
||||
|
||||
<p><b>> {{ date }}</b></p>
|
||||
|
||||
<p class="post-summary">
|
||||
<div class="quote">
|
||||
{{ summary }}...
|
||||
</div>
|
||||
</p>
|
||||
</div>
|
||||
15
layout/item.xml
Normal file
15
layout/item.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<item>
|
||||
<title>{{ title }}</title>
|
||||
<link>https://{{ blog_url }}/{{ slug }}.html</link>
|
||||
<link href="https://{{ blog_url }}/{{ slug }}.html" />
|
||||
<guid isPermaLink="true">
|
||||
https://{{ blog_url }}/{{ slug }}.html
|
||||
</guid>
|
||||
<atom:link href="https://{{ blog_url }}/atom.xml" rel="self" type="application/rss+xml" />
|
||||
<description>
|
||||
<![CDATA[
|
||||
{{ summary }}
|
||||
]]>
|
||||
</description>
|
||||
<pubDate>{{ rfc_2822_date }}</pubDate>
|
||||
</item>
|
||||
3
layout/list.html
Normal file
3
layout/list.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<div class="horizontal">
|
||||
{{ content }}
|
||||
</div>
|
||||
39
layout/page.html
Normal file
39
layout/page.html
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>{{ title }}</title>
|
||||
|
||||
<meta property="og:title" content="{{ title }}" />
|
||||
<meta property="og:description" content="{{ description }}" />
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> <link rel="stylesheet" href="{{ page_assets }}/css/main.css" />
|
||||
<link rel="stylesheet" href="{{ page_assets }}/css/blog.css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1><center><a class="page-title" href="/">papatutuwawa@home:~$</a></center></h1>
|
||||
<h3 class="title-sub"><center>by PapaTutuWawa</center></h3>
|
||||
|
||||
<div class="container title-sub-subbar horizontal">
|
||||
<a href="/about.html" class="subbar-link"><h3>About</h3></a>
|
||||
<a href="/index.html" class="subbar-link"><h3>Archive</h3></a>
|
||||
<a href="/atom.xml" class="subbar-link"><h3>RSS</h3></a>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="vertical">
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
<br/>
|
||||
|
||||
<footer>
|
||||
<center>
|
||||
Created by <i>PapaTutuWawa</i> with <3 using
|
||||
<a href="https://github.com/google/roboto">Roboto</a> and
|
||||
<a href="https://github.com/sunainapai/makesite">makesite</a>
|
||||
</center>
|
||||
</footer>
|
||||
</html>
|
||||
7
layout/post.html
Normal file
7
layout/post.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<div class="post">
|
||||
<article>
|
||||
<h1>{{ title }}</h1>
|
||||
|
||||
{{ content }}
|
||||
</article>
|
||||
</div>
|
||||
Reference in New Issue
Block a user