generated from chadbaldwin/simple-blog-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from StevenPG/jdk23-gather-post
Jdk23 gather post
- Loading branch information
Showing
9 changed files
with
337 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<footer class="site-footer h-card"> | ||
|
||
|
||
<data class="u-url" href="/"></data> | ||
|
||
<div class="wrapper"> | ||
|
||
<div style="display: flex; justify-content: center; align-items: center; margin-bottom: 2em"> | ||
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name="bmc-button" data-slug="codingsteve" data-color="#FFDD00" data-emoji="💡" data-font="Bree" data-text="Help Keep This Site Running" data-outline-color="#000000" data-font-color="#000000" data-coffee-color="#ffffff" ></script> | ||
</div> | ||
|
||
<div class="footer-col-wrapper"> | ||
<div class="footer-col"> | ||
<p class="feed-subscribe"> | ||
<a href="http://localhost:4000/feed.xml"> | ||
<svg class="svg-icon orange"> | ||
<use xlink:href="/assets/minima-social-icons.svg#rss"></use> | ||
</svg> | ||
<span>Subscribe</span> | ||
</a> | ||
</p> | ||
</div> | ||
<div class="footer-col"> | ||
<p>My first blog, the place where I plan on writing some things down. At the very least, it's an | ||
outlet for writing about tech and things I find interesting!</p> | ||
</div> | ||
</div> | ||
|
||
<div class="social-links"> | ||
<ul class="social-media-list"></ul> | ||
</div> | ||
|
||
</div> | ||
|
||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ page.lang | default: site.lang | default: "en" }}"> | ||
|
||
{%- include head.html -%} | ||
|
||
<body> | ||
|
||
{%- include header.html -%} | ||
|
||
<main class="page-content" aria-label="Content"> | ||
<div class="wrapper"> | ||
{{ content }} | ||
</div> | ||
</main> | ||
|
||
{%- include custom_footer.html -%} | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
layout: base | ||
--- | ||
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting"> | ||
|
||
<header class="post-header"> | ||
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1> | ||
<p class="post-meta"> | ||
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} | ||
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"> | ||
{{ page.date | date: date_format }} | ||
</time> | ||
{%- if page.modified_date -%} | ||
~ | ||
{%- assign mdate = page.modified_date | date_to_xmlschema -%} | ||
<time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified"> | ||
{{ mdate | date: date_format }} | ||
</time> | ||
{%- endif -%} | ||
{%- if page.author -%} | ||
• {% for author in page.author %} | ||
<span itemprop="author" itemscope itemtype="http://schema.org/Person"> | ||
<span class="p-author h-card" itemprop="name">{{ author }}</span></span> | ||
{%- if forloop.last == false %}, {% endif -%} | ||
{% endfor %} | ||
{%- endif -%}</p> | ||
</header> | ||
|
||
<div class="post-content e-content" itemprop="articleBody"> | ||
{{ content }} | ||
</div> | ||
|
||
{%- if site.disqus.shortname -%} | ||
{%- include disqus_comments.html -%} | ||
{%- endif -%} | ||
|
||
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a> | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.