diff --git a/_config.yml b/_config.yml index 42bd8b8..491010d 100644 --- a/_config.yml +++ b/_config.yml @@ -8,4 +8,5 @@ defaults: type: "posts" values: layout: "post" - excerpt_separator: "" \ No newline at end of file + excerpt_separator: "" + permalink: /:year/:month/:title diff --git a/_layouts/post.html b/_layouts/post.html index c0e8e74..75be490 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,6 +1,20 @@ --- layout: default --- -

{{ page.title }}

-
By {{ page.author }}
-{{ content }} \ No newline at end of file +{% include header.html %} +

{{ page.title }}

+
+
+
person By {{ page.author }} access_time Published {{ page.date | date_to_long_string: "ordinal" }}
+ {{ content }} +
+
+
+

Share this post

+ coming soon uwu +
+
+

Leave a comment

+ coming soon uwu +
+
\ No newline at end of file diff --git a/_posts/2019-07-17-the-fediverse-tribune-issue-1.md b/_posts/2019-07-17-the-fediverse-tribune-issue-1.md index e980c91..198b63c 100644 --- a/_posts/2019-07-17-the-fediverse-tribune-issue-1.md +++ b/_posts/2019-07-17-the-fediverse-tribune-issue-1.md @@ -1,5 +1,4 @@ --- ---- title: The Fediverse TriBune Issue 1 date: 2019-07-17 00:53 author: Lynne diff --git a/_posts/2019-08-14-the-fediverse-tribune-issue-2.md b/_posts/2019-08-14-the-fediverse-tribune-issue-2.md index 3847f25..bd41a70 100644 --- a/_posts/2019-08-14-the-fediverse-tribune-issue-2.md +++ b/_posts/2019-08-14-the-fediverse-tribune-issue-2.md @@ -1,5 +1,4 @@ --- ---- title: The Fediverse TriBune Issue 2 date: 2019-08-14 01:14 updated: 2020-04-02 diff --git a/_posts/2020-01-03-xbox-one-woes.md b/_posts/2020-01-03-xbox-one-woes.md index 5b91126..d59d908 100644 --- a/_posts/2020-01-03-xbox-one-woes.md +++ b/_posts/2020-01-03-xbox-one-woes.md @@ -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.* diff --git a/assets/material/style.css b/assets/material/style.css index 64db942..e05961a 100644 --- a/assets/material/style.css +++ b/assets/material/style.css @@ -23,4 +23,7 @@ /* Support for IE. */ font-feature-settings: 'liga'; + + /* my own changes */ + vertical-align: bottom; } \ No newline at end of file diff --git a/assets/style.css b/assets/style.css index c2ae9c8..8615d4d 100644 --- a/assets/style.css +++ b/assets/style.css @@ -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; } \ No newline at end of file diff --git a/index.html b/index.html index c18f8aa..4570759 100644 --- a/index.html +++ b/index.html @@ -4,12 +4,18 @@ title: "bune.city - Home" --- {% include header.html %}

{{ site.title }}

-
- {% for post in site.posts %} -
-

{{ post.title }}

- face -

{{ post.excerpt }}

+
+
+ {% for post in site.posts %} +
+

{{ post.title }}

+
+ By {{ post.author }} access_time Published {{ post.date | date_to_long_string: "ordinal" }} +
+
+

{{ post.summary | default: post.excerpt }}

+
+
+ {% endfor %}
- {% endfor %}
\ No newline at end of file