Initial template work
This commit is contained in:
24
_layouts/default.lqd.html
Normal file
24
_layouts/default.lqd.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{% if page.title %}
|
||||
<title>{{ page.title }} | {{ site.title }}</title>
|
||||
{% else %}
|
||||
<title>{{ site.title }}</title>
|
||||
{% endif %}
|
||||
<link rel="stylesheet" type="text/css" href="{{ "main.css" | relative_url }}" />
|
||||
</head>
|
||||
<body>
|
||||
{% if basic_theme.display_title and site.title %}
|
||||
<h1>{{ site.title }}</h1>
|
||||
{% endif %}
|
||||
{% include links.lqd top: true %}
|
||||
{{ content }}
|
||||
<hr />
|
||||
{% if basic.display_info %}
|
||||
This is {{ site.url | get_domain }} running Jekyll.
|
||||
{% endif %}
|
||||
{% include links.lqd.html top: false %}
|
||||
<hr />
|
||||
</body>
|
||||
</html>
|
||||
19
_layouts/page.lqd.html
Normal file
19
_layouts/page.lqd.html
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<h2>{{ page.title }}</h2>
|
||||
<div id="metadata">
|
||||
<span id="url>{{ page.url }}
|
||||
{% if page.date %}
|
||||
<span id="date">{{ page.date }}</span> by <span id="author">{{ page.author }}</span>
|
||||
{% else %}
|
||||
By <span id="author">{{ page.author }}</span>
|
||||
{% endif %}
|
||||
{% if page.tags %}
|
||||
Tags: <span id="taglist">{{ page.tags | array_to_sentence_string: "" }}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div id="content">
|
||||
{{ content }}
|
||||
</div>
|
||||
18
_layouts/post.lqd.html
Normal file
18
_layouts/post.lqd.html
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<h2>{{ page.title }}</h2>
|
||||
<div id="metadata">
|
||||
{% if page.date %}
|
||||
<span id="date">{{ page.date }}</span> by <span id="author">{{ page.author }}</span>
|
||||
{% else %}
|
||||
By <span id="author">{{ page.author }}</span>
|
||||
{% endif %}
|
||||
{% if page.tags %}
|
||||
Tags: <span id="taglist">{{ page.tags | array_to_sentence_string: "" }}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div id="content">
|
||||
{{ content }}
|
||||
</div>
|
||||
Reference in New Issue
Block a user