Skip to content

Commit ed1e954

Browse files
Levis AgabaLevis Agaba
authored andcommitted
Frontend fixes and email changes
1 parent 74d2593 commit ed1e954

15 files changed

Lines changed: 68 additions & 22 deletions

.jekyll-metadata

19.1 KB
Binary file not shown.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
For everyone's coding journey working on the various projects.
44

5+
1. [blog-1](https://stack-breakthrough.github.io) default <br/>
6+
2. [blog-2](https://stack-break.onrender.com) up during maintenance ( manually deployed )
7+
8+
59
## Adding your posts
610

711
1. Run the `new-blog.sh` or `new-blog.sh "post title"` to get create a blog post

_authors/levis.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
name: Levis Agaba
3+
position: Software Developer
4+
---
5+
6+
I have built systems from scratch.

_config.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
title: "Through The Stack!"
2-
author: "Levis Agaba"
32
description: "Made with <b style=\"color: #f45;\">&lt;3</b>"
43
permalink: /:title/
54
lang: "en"
65
excerpt_separator: "\n\n\n"
76
date_format: "%B %d, %Y"
87

9-
# Layout
8+
# Authors
9+
authors:
10+
alevis:
11+
name: "Levis Agaba"
12+
url: "https://github.com/alevis"
1013

14+
# Layout
1115
show_excerpts: true # show article excerpts on the home page
1216
show_frame: true # adds a gray frame to the site
1317
show_sidebar: false # show a sidebar instead of the usual header

_includes/meta.html

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
<h1>
33
<a href="{{ include.post.url | relative_url }}">{{ include.post.title }}</a>
44
</h1>
5-
{%- assign date_format = site.date_format | default: "%B %d, %Y" -%}
6-
<time datetime="{{ include.post.date | date_to_xmlschema }}">{{ include.post.date | date: date_format }}
7-
</time>
8-
<span>{{ include.post.author }}</span>
5+
<div class="meta">
6+
{%- assign date_format = site.date_format | default: "%B %d, %Y" -%}
7+
<time datetime="{{ include.post.date | date_to_xmlschema }}">{{ include.post.date | date: date_format }}
8+
</time>
9+
<span class="author">
10+
<a href="{{ include.post.author-url | relative_url }}">
11+
{{ include.post.author }}
12+
</a>
13+
</span>
14+
</div>
915
</header>

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default
3-
author: 'Levis Agaba'
43
---
4+
55
<article>
66
<header><h1><a href="{{ page.url | relative_url }}">{{ page.title }}</a></h1></header>
77
{{ content }}

_layouts/post.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
layout: default
3-
author: 'Levis Agaba'
43
---
54

65
<article>
7-
{% include meta.html post=page %}
6+
{% include meta.html post=page author=page.author %}
87
{{ content }}
98
{% if page.comments != false and site.comments.isso or site.comments.disqus %}
109
<hr>

_posts/2017-01-01-advanced-examples.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
title: "Advanced examples"
33
mathjax: true
44
layout: post
5+
author: "First Last"
6+
author-url: "http://example.com/"
57
categories: media
68
---
79

_posts/2017-02-01-markdown-examples.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title: "Markdown examples"
33
layout: post
4+
author: "First Last"
5+
author-url: "http://example.com/"
6+
categories: category
47
---
58

69
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

_posts/2017-03-01-welcome-to-jekyll.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title: "Welcome to Jekyll"
33
layout: post
4+
author: "Gary Morrow"
5+
author-url: "http://example.com"
6+
categories: category
47
---
58

69
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.

0 commit comments

Comments
 (0)