a whole lot

This commit is contained in:
Lynne Megido 2020-04-03 16:30:14 +10:00
parent 9bb8d70751
commit cb2a27a35c
Signed by: lynnesbian
GPG Key ID: F0A184B5213D9F90
8 changed files with 84 additions and 14 deletions

View File

@ -8,4 +8,5 @@ defaults:
type: "posts"
values:
layout: "post"
excerpt_separator: "<!--more-->"
excerpt_separator: "<!--more-->"
permalink: /:year/:month/:title

View File

@ -1,6 +1,20 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<div id='post-info'>By {{ page.author }}</div>
{{ content }}
{% include header.html %}
<h1 id='post-title'>{{ page.title }}</h1>
<div id='main'>
<div id='post-content'>
<div id='post-info'><i class='material-icons'>person</i> By {{ page.author }} <i class='material-icons'>access_time</i> Published {{ page.date | date_to_long_string: "ordinal" }}</div>
{{ content }}
</div>
<hr>
<div id='post-share'>
<h2>Share this post</h2>
coming soon uwu
</div>
<div id='post-comments'>
<h2>Leave a comment</h2>
coming soon uwu
</div>
</div>

View File

@ -1,5 +1,4 @@
---
---
title: The Fediverse TriBune Issue 1
date: 2019-07-17 00:53
author: Lynne

View File

@ -1,5 +1,4 @@
---
---
title: The Fediverse TriBune Issue 2
date: 2019-08-14 01:14
updated: 2020-04-02

View File

@ -3,7 +3,8 @@ title: Xbox One Woes
updated: 2020-01-04
author: Lynne
categories: [Reviews, Technology]
tags: [[Review, Technology, Xbox]]
tags: [Review, Technology, Xbox]
summary: My experiences with the Xbox One, and why I really don't recommend getting one (unless you really want to play the exclusives)
---
*Xbox? XBox? XBOX? Whatever.*

View File

@ -23,4 +23,7 @@
/* Support for IE. */
font-feature-settings: 'liga';
/* my own changes */
vertical-align: bottom;
}

View File

@ -1,3 +1,50 @@
body {
font-family: sans-serif;
}
h1 {
font-family: "Playfair Display";
text-align: center;
}
/* h1#post-title {
} */
#post-content h2 {
background: linear-gradient(to right, #9fc 0px 5px, transparent 5px 100%);
padding-left: 7px;
margin-left: -7px;
}
#post-info {
color: #333;
}
/* post listings */
.post {
padding: 5px;
margin: 10px 0;
border-bottom: thin #aaa solid;
}
.post a {
color: #222;
text-decoration: none;
}
.post h2 {
margin-bottom: 5px;
}
.post-excerpt h2 {
display: none;
}
/* post view */
#post-content #post-info {
text-align: center;
display: block;
}
#main {
width: 90%;
margin: 0 auto;
}

View File

@ -4,12 +4,18 @@ title: "bune.city - Home"
---
{% include header.html %}
<h1>{{ site.title }}</h1>
<div id='posts'>
{% for post in site.posts %}
<div class='post'>
<h2><a href='{{ post.url }}'>{{ post.title }}</a></h2>
<i class='material-icons'>face</i>
<p>{{ post.excerpt }}</p>
<div id='main'>
<div id='posts'>
{% for post in site.posts %}
<div class='post'>
<h2><a href='{{ post.url }}'>{{ post.title }}</a></h2>
<div id='post-info'>
By {{ post.author }} <i class='material-icons'>access_time</i> Published {{ post.date | date_to_long_string: "ordinal" }}
</div>
<div class='post-excerpt'>
<p>{{ post.summary | default: post.excerpt }}</p>
</div>
</div>
{% endfor %}
</div>
{% endfor %}
</div>