Compare commits

...

31 Commits
v0.1.0 ... main

Author SHA1 Message Date
earnest ma 9cb8b88c29
feat! Bump minimum Hugo version to 0.88.1 2022-05-18 11:12:02 -04:00
earnest ma 9f992cd091
chore: Update theme metadata 2022-05-18 11:11:53 -04:00
earnest ma 472dcc3011
chore: Update docs 2022-05-18 10:57:23 -04:00
earnest ma b209dbb47d
chore: Bump version to 0.3.2 2021-03-12 22:50:35 -05:00
earnest ma 37d192f6ee
chore: Update changelog for v0.3.2 2021-03-12 22:50:22 -05:00
earnest ma 6014c3db5c
chore: Fix changelog 2021-03-12 22:47:39 -05:00
earnest ma 6985940c20
chore(deps): Bump DOMPurify to version 2.2.7 2021-03-12 22:42:22 -05:00
earnest ma bac71ad470
fix: Gemini post post links spacing 2021-02-19 10:30:25 -05:00
earnest ma 2e43086436
fix: Gemini lastmod and published date 2021-02-11 23:35:50 -05:00
earnest ma 0c85b94f9f
format: Fix whitespace 2021-02-11 23:35:49 -05:00
earnest ma 165d84b25f
chore: Bump version for 0.3.1 2021-02-11 22:47:47 -05:00
earnest ma 137f58eeb5
chore: Update changelog for 0.3.1 2021-02-11 22:47:22 -05:00
earnest ma 3f1a4691f8
fix: Leftover </time> 2021-02-11 22:40:43 -05:00
earnest ma c7b44080f4
fix! Broken link
(cherry picked from commit 9cb84187ebc04ed31dd184269ba12dd37d6bde99)
2021-02-10 23:33:01 -05:00
earnest ma f6830d13c3
chore: Use non-WWW links 2021-02-10 13:02:49 -05:00
earnest ma c1edf7df01
chore: Version 0.3.0 2021-02-10 11:03:26 -05:00
earnest ma 3ff4d2a3b8
chore: Update changelog for v0.3.0 2021-02-10 11:03:25 -05:00
earnest ma 9e1ef48fc0
chore: Update readme.md 2021-02-10 11:03:25 -05:00
earnest ma 56a73f57c4
docs: Add exampleSite and theme metadata 2021-02-10 10:34:00 -05:00
earnest ma 55db714561
feat: Add support for gemini
Closes #1
Closes #2
2021-02-10 09:24:44 -05:00
earnest ma 17bd0b7b87
chore: Bump version 2021-02-05 21:10:35 -05:00
earnest ma fdee93afb1
chore: Version 0.2.0 2021-02-05 21:07:38 -05:00
earnest ma b9b1465b0d
chore: Update changelog for v0.2.0 2021-02-05 21:07:07 -05:00
earnest ma 07bc925853
misc: Update readme.md 2021-02-05 21:04:34 -05:00
earnest ma bab1f8a535
feat: Custom footer space 2021-02-05 20:07:51 -05:00
earnest ma 2b6951e7e4
feat: Footer GitInfo, links in footer 2021-02-05 20:05:16 -05:00
earnest ma f968e48928
fix: Adjust footer 2021-02-05 20:05:15 -05:00
earnest ma a5789645aa
misc: Clarify troubleshooting in layouts/partials/openring-out.html 2021-02-05 20:05:15 -05:00
earnest ma b7ed911aba
feat: Add support for comments from Mastodon posts (API)
Can be replied to from the Fediverse/ any ActivityPub-compatible instance.
2021-02-05 20:05:10 -05:00
earnest ma 83a6cf1fb2
chore: Update readme.md 2021-02-05 14:30:16 -05:00
earnest ma 9b9981f98b
misc: Version -> develop 2021-02-05 12:59:03 -05:00
28 changed files with 998 additions and 338 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.hugo_build.lock
exampleSite/themes
exampleSite/resources

View File

@ -1,7 +1,6 @@
/* Adapted from Simple CSS (MIT License): https://simplecss.org/ */
/* Set the global variables for everything. Change these to use your own fonts/colours. */
:root {
/* Set sans-serif & mono fonts */
--sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
--mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
@ -24,429 +23,466 @@
--accent: #bd93f9;
--accent-light: #bd93f9;
--code: #ff79c6;
--preformatted: #CCC;
--preformatted: #ccc;
--marked: #f1fa8c;
}
}
/* Dark theme */
img, video {
opacity: .6;
}
/* Dark theme */
img,
video {
opacity: 0.6;
}
* {
* {
/* Set the font globally */
font-family: var(--sans-font);
}
}
html {
html {
font-size: 16px;
}
}
/* Make the body a nice central block */
body {
/* Make the body a nice central block */
body {
color: var(--text);
background: var(--bg);
font-size: var(--base-fontsize);
line-height: var(--line-height);
margin: 0;
}
}
/* Make the main element a nice central block */
main {
/* Make the main element a nice central block */
main {
margin: 1rem auto 0;
max-width: 45rem;
padding: 0 .5rem;
}
padding: 0 0.5rem;
}
/* Make the header bg full width, but the content inline with body */
header {
background: var(--accent-bg);
border-bottom: 1px solid var(--border);
/* Make the header bg full width, but the content inline with body */
header {
background: var(--accent-bg);
border-bottom: 1px solid var(--border);
padding: 1.5rem 15rem;
margin-bottom: 3rem;
}
}
/* Reduces header padding on smaller screens */
@media only screen and (max-width: 1200px) {
/* Reduces header padding on smaller screens */
@media only screen and (max-width: 1200px) {
header {
padding: 1rem;
padding: 1rem;
}
nav {
text-align: center;
text-align: center;
}
}
}
/* Remove margins for header text */
header h1,
header p {
/* Remove margins for header text */
header h1,
header p {
margin: 0;
}
}
/* Fix header line height when title wraps */
header h2 {
/* Fix header line height when title wraps */
header h2 {
text-align: center;
line-height: 1.1;
}
}
/* Format navigation */
nav {
/* Format navigation */
nav {
font-size: 1rem;
line-height: 2;
padding: 1rem 0;
}
}
nav a {
nav a {
margin: 1rem 1rem 0 0;
border: 1px solid var(--border);
border-radius: 5px;
color: var(--text) !important;
display: inline-block;
padding: .1rem 1rem;
padding: 0.1rem 1rem;
text-decoration: none;
transition: .4s;
}
transition: 0.4s;
}
nav a:hover {
nav a:hover {
color: var(--accent) !important;
border-color: var(--accent);
}
}
nav a.current:hover {
nav a.current:hover {
text-decoration: none;
}
}
footer {
footer {
margin-top: 4rem;
padding: 2rem 1rem 1.5rem 1rem;
color: var(--text-light);
font-size: .9rem;
font-size: 0.9rem;
text-align: center;
border-top: 1px solid var(--border);
}
}
/* Format headers */
h1 {
/* Format headers */
h1 {
font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem);
}
}
h2 {
h2 {
font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem);
}
}
h3 {
h3 {
font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem);
}
}
h4 {
h4 {
font-size: calc(var(--base-fontsize) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem);
}
}
h5 {
h5 {
font-size: var(--base-fontsize);
margin-top: calc(var(--line-height) * 1.5rem);
}
}
h6 {
h6 {
font-size: calc(var(--base-fontsize) / var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem);
}
}
/* Format links & buttons */
a,
a:visited {
/* Format links & buttons */
a,
a:visited {
color: var(--accent);
}
}
a:hover {
a:hover {
text-decoration: none;
}
}
a button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
a button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
border: none;
border-radius: 5px;
background: var(--accent);
font-size: 1rem;
color: var(--bg);
padding: .7rem .9rem;
margin: .5rem 0;
transition: .4s;
}
padding: 0.7rem 0.9rem;
margin: 0.5rem 0;
transition: 0.4s;
}
a button[disabled],
button[disabled],
input[type="submit"][disabled],
input[type="reset"][disabled],
input[type="button"][disabled] {
cursor: default;
opacity: .5;
cursor: not-allowed;
}
a button[disabled],
button[disabled],
input[type="submit"][disabled],
input[type="reset"][disabled],
input[type="button"][disabled] {
cursor: default;
opacity: 0.5;
cursor: not-allowed;
}
/* Set the cursor to '?' while hovering over an abbreviation */
abbr {
cursor: help;
}
/* Set the cursor to '?' while hovering over an abbreviation */
abbr {
cursor: help;
}
button:focus,
button:enabled:hover,
input[type="submit"]:focus,
input[type="submit"]:enabled:hover,
input[type="reset"]:focus,
input[type="reset"]:enabled:hover,
input[type="button"]:focus,
input[type="button"]:enabled:hover {
opacity: .8;
}
button:focus,
button:enabled:hover,
input[type="submit"]:focus,
input[type="submit"]:enabled:hover,
input[type="reset"]:focus,
input[type="reset"]:enabled:hover,
input[type="button"]:focus,
input[type="button"]:enabled:hover {
opacity: 0.8;
}
/* Format the expanding box */
details {
padding: .6rem 1rem;
background: var(--accent-bg);
border: 1px solid var(--border);
border-radius: 5px;
/* Format the expanding box */
details {
padding: 0.6rem 1rem;
background: var(--accent-bg);
border: 1px solid var(--border);
border-radius: 5px;
margin-bottom: 1rem;
}
}
summary {
cursor: pointer;
font-weight: bold;
}
details[open] {
padding-bottom: .75rem;
}
details[open] summary {
margin-bottom: .5rem;
}
details[open]>*:last-child {
margin-bottom: 0;
}
/* Format tables */
table {
border-collapse: collapse;
width: 100%
}
td,
th {
border: 1px solid var(--border);
text-align: left;
padding: .5rem;
}
th {
background: var(--accent-bg);
summary {
cursor: pointer;
font-weight: bold;
}
}
tr:nth-child(even) {
/* Set every other cell slightly darker. Improves readability. */
background: var(--accent-bg);
}
details[open] {
padding-bottom: 0.75rem;
}
table caption {
font-weight: bold;
margin-bottom: .5rem;
}
details[open] summary {
margin-bottom: 0.5rem;
}
/* Lists */
ol,
ul {
padding-left: 3rem;
}
details[open] > *:last-child {
margin-bottom: 0;
}
/* Format forms */
textarea,
select,
input {
/* Format tables */
table {
border-collapse: collapse;
width: 100%;
}
td,
th {
border: 1px solid var(--border);
text-align: left;
padding: 0.5rem;
}
th {
background: var(--accent-bg);
font-weight: bold;
}
tr:nth-child(even) {
/* Set every other cell slightly darker. Improves readability. */
background: var(--accent-bg);
}
table caption {
font-weight: bold;
margin-bottom: 0.5rem;
}
/* Lists */
ol,
ul {
padding-left: 3rem;
}
/* Format forms */
textarea,
select,
input {
font-size: inherit;
font-family: inherit;
padding: .5rem;
margin-bottom: .5rem;
padding: 0.5rem;
margin-bottom: 0.5rem;
color: var(--text);
background: var(--bg);
border: 1px solid var(--border);
border-radius: 5px;
box-shadow: none;
box-sizing: border-box;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 5px;
box-shadow: none;
box-sizing: border-box;
width: 60%;
}
}
/* Make the textarea wider than other inputs */
textarea {
width: 80%
}
/* Make the textarea wider than other inputs */
textarea {
width: 80%;
}
/* Makes input fields wider on smaller screens */
@media only screen and (max-width: 720px) {
/* Makes input fields wider on smaller screens */
@media only screen and (max-width: 720px) {
textarea,
select,
input {
width: 100%;
width: 100%;
}
}
}
/* Ensures the checkbox and radio inputs do not have a set width like other input fields */
input[type="checkbox"], input[type="radio"]{
/* Ensures the checkbox and radio inputs do not have a set width like other input fields */
input[type="checkbox"],
input[type="radio"] {
width: auto;
}
}
/* do not show border around file selector button */
input[type="file"] {
/* do not show border around file selector button */
input[type="file"] {
border: 0;
}
}
/* Without this any HTML using <fieldset> shows ugly borders and has additional padding/margin. (Issue #3) */
fieldset {
/* Without this any HTML using <fieldset> shows ugly borders and has additional padding/margin. (Issue #3) */
fieldset {
border: 0;
padding: 0;
margin: 0;
}
}
/* Misc body elements */
/* Misc body elements */
hr {
color: var(--border);
hr {
color: var(--border);
border-top: 1px;
margin: 1rem auto;
}
margin: 1rem auto;
}
mark {
padding: 2px 5px;
border-radius: 4px;
background: var(--marked);
}
mark {
padding: 2px 5px;
border-radius: 4px;
background: var(--marked);
}
main img, main video {
main img,
main video {
max-width: 100%;
border-radius: 5px;
}
}
figure {
figure {
margin: 0;
}
}
figcaption {
font-size: .9rem;
figcaption {
font-size: 0.9rem;
color: var(--text-light);
text-align: center;
margin-bottom: 1rem;
}
}
blockquote {
blockquote {
margin: 2rem 0 2rem 2rem;
padding: .4rem .8rem;
border-left: .35rem solid var(--accent);
opacity: .8;
font-style: italic;
}
padding: 0.4rem 0.8rem;
border-left: 0.35rem solid var(--accent);
opacity: 0.8;
font-style: italic;
}
cite {
cite {
font-size: 0.9rem;
color: var(--text-light);
font-style: normal;
}
}
/* Use mono font for code like elements */
code,
pre,
kbd,
samp {
font-size: 1.075rem;
font-family: var(--mono-font);
color: var(--code);
}
/* Use mono font for code like elements */
code,
pre,
kbd,
samp {
font-size: 1.075rem;
font-family: var(--mono-font);
color: var(--code);
}
kbd {
color: var(--preformatted);
border: 1px solid var(--preformatted);
border-bottom: 3px solid var(--preformatted);
border-radius: 5px;
padding: .1rem;
}
kbd {
color: var(--preformatted);
border: 1px solid var(--preformatted);
border-bottom: 3px solid var(--preformatted);
border-radius: 5px;
padding: 0.1rem;
}
pre {
padding: 1rem 1.4rem;
max-width: 100%;
overflow: auto;
color: var(--preformatted);
background: var(--accent-bg);
border: 1px solid var(--border);
border-radius: 5px;
}
pre {
padding: 1rem 1.4rem;
max-width: 100%;
overflow: auto;
color: var(--preformatted);
background: var(--accent-bg);
border: 1px solid var(--border);
border-radius: 5px;
}
/* Fix embedded code within pre */
pre code {
color: var(--preformatted);
background: none;
margin: 0;
padding: 0;
}
/* Fix embedded code within pre */
pre code {
color: var(--preformatted);
background: none;
margin: 0;
padding: 0;
}
/* CSS for Openring */
.webring {
margin-top: 2rem;
/* CSS for Openring */
.webring {
margin-top: 2rem;
}
.wr-articles {
display: flex;
@media (max-width: 640px) {
flex-direction: column;
}
}
.wr-articles {
display: flex;
.wr-article {
flex: 1 1 0;
display: flex;
flex-direction: column;
background: #323542;
padding: 0.5rem;
@media(max-width: 640px) {
flex-direction: column;
}
}
margin: 0 0.5rem;
.wr-article {
flex: 1 1 0;
display: flex;
flex-direction: column;
background: #323542;
padding: 0.5rem;
margin: 0 0.5rem;
@media(max-width: 640px) {
margin: 0.5rem 0;
}
}
.wr-article:first-child {
margin-left: 0;
}
.wr-article:last-child {
margin-right: 0;
}
.wr-summary {
font-size: 0.8rem;
flex: 1 1 0;
color: rgb(235, 235, 235);
}
.wr-attribution {
float: right;
font-size: 0.8rem;
color: rgb(192, 191, 191);
line-height: 3;
}
.wr-date {
color: rgb(192, 191, 191);
}
.wr-source {
color: rgb(192, 191, 191);
@media (max-width: 640px) {
margin: 0.5rem 0;
}
}
.wr-article:first-child {
margin-left: 0;
}
.wr-article:last-child {
margin-right: 0;
}
.wr-summary {
font-size: 0.8rem;
flex: 1 1 0;
color: rgb(235, 235, 235);
}
.wr-attribution {
float: right;
font-size: 0.8rem;
color: rgb(192, 191, 191);
line-height: 3;
}
.wr-date {
color: rgb(192, 191, 191);
}
.wr-source {
color: rgb(192, 191, 191);
}
.mastodon-comment {
background-color: var(--body-background);
border-radius: var(--card-border-radius);
padding: var(--card-padding);
margin-bottom: 1rem;
display: flex;
}
.mastodon-comment .content {
flex-grow: 2;
}
.mastodon-comment .avatar img {
margin-right: 1rem;
min-width: 60px;
}
.mastodon-comment .author {
padding-top: 0;
display: flex;
}
.mastodon-comment .author .date {
margin-left: auto;
}
.mastodon-comment .disabled {
color: var(--accent-color);
}
.mastodon-comment-content p:first-child {
margin-top: 0;
}

View File

@ -1,10 +1,54 @@
# Changelog
## 0.3.2 - 2021-03-12
Minor fixes to the Gemini side of things and dependencies.
```
earnest ma (5):
format: Fix whitespace
fix: Gemini lastmod and published date
fix: Gemini post post links spacing
chore(deps): Bump DOMPurify to version 2.2.7
chore: Fix changelog
```
## 0.3.1 - 2021-02-11
Just minor fixes to tags and links.
```
earnest ma (3):
chore: Use non-WWW links
fix! Broken link
fix: Leftover </time>
```
## 0.3.0 - 2021-02-10
In this release, basic support for output to Gemini was added, as well as Hugo theme metadata and an exampleSite. Improvements are always welcome.
```
earnest ma (4):
chore: Bump version
feat: Add support for gemini
docs: Add exampleSite and theme metadata
chore: Update readme.md
```
## 0.2.0 - 2021-02-05
A development release. Mainly adds support for "comments" through the Mastodon API by posting a toot. Improvements to the footer.
* Features
* Add support for comments from Mastodon posts (API)
* Footer: GitInfo, insert links in footer, custom footer space
## 0.1.0 - 2021-02-05
Initial development release of Dracublog.
* Features
* Add openring styling support and incoming template example
* Add 404 page
* Custom RSS template to show full content in description
* Add 404 page
* Custom RSS template to show full content in description

View File

@ -4,25 +4,19 @@
Thank you for your interest in contributing to this project!
## Bug Reports
## Bug Reports and Suggestions
Please open a new issue [here](https://git.earne.link/earnestma/dracublog/issues).
Please open a new issue [here](https://git.earne.link/earnestma/dracublog/issues) or discuss on [earne.link Discussion](https://discuss.earne.link/t/earnest).
## Style Guide
See the [editor configuration file](.editorconfig) file for hints.
## Suggesting Changes
For pull requests:
For patches, simply [format your patch](https://git-send-email.io/) and [email it](https://www.earnestma.xyz/contact) to me (same email as `git log | grep "Author: earnest ma" -m 1`).
If you prefer creating a pull request:
## Making Changes
- [Fork the repo](https://git.earne.link/earnestma/dracublog), clone and create a branch
- Add, commit your changes, push to branch
- [Create a PR](https://git.earne.link/earnestma/dracublog/pulls) targeting `develop` branch (in most cases)
- [Create a PR](https://git.earne.link/earnestma/dracublog/pulls)
## Changelog

79
exampleSite/config.toml Normal file
View File

@ -0,0 +1,79 @@
# example config.toml file
# also used for the theme's documentation site
# copy this to yoursite-dir/config.toml and modify as needed
# Title of your site
title = "Dracublog"
# baseURL
baseURL = "example.org"
# Language code, defaults to en-US if not set
languageCode = "en-ca"
# theme - uncomment this (you can also have multiple values using ["", ""])
theme = "dracublog"
# Copyright statement, used in RSS feed and footer
copyright = "Copyright © 2021, earnest ma"
# Whether to enable GitInfo or not
enableGitInfo = false
# Taxonomies
[taxonomies]
tag = "tags"
author = "authors"
[params]
# path to favicon, should be /favicon.ico (place in static/)
favicon = "/favicon.ico"
# whether to show openring (recent posts from blogs I read...) or not
openring = false # true
# URL to git repository (for GitInfo and related)
# GitRepo = "https://git.earne.link/earnestma/dracublog"
# Nice permalinks for blog posts
[permalinks]
blog = "/:year/:month/:day-:slug"
# Enable "unsafe" for raw HTML in markdown
[markup.goldmark.renderer]
unsafe = true
# Menu - header items show after blog, if it exists
[[languages.en.menu.main]]
identifier = "about"
name = "About"
url = "/about"
weight = 100
[[languages.en.menu.main]]
identifier = "work"
name = "Work"
url = "/work"
weight = 200
# Footer links
#[[languages.en.menu.footer]]
# identifier = "Home"
# name = "Home"
# url = "/"
# weight = 100
#[mediaTypes]
#[mediaTypes."text/gemini"]
#suffixes = ["gmi"]
#[outputFormats]
#[outputFormats.Gemini]
#name = "GEMTEXT"
#isPlainText = true
#isHTML = false
#mediaType = "text/gemini"
#protocol = "gemini://"
#permalinkable = true
#path = "gemini/"
#[outputs]
#section = ["HTML", "RSS"]

View File

@ -0,0 +1,6 @@
# Dracublog demo
This is an **example** of a site using this theme, feel free to look around.
- [Source](https://git.earne.link/earnestma/dracublog)
- [Author's website](https://www.earnestma.xyz) (uses this theme)

View File

@ -0,0 +1,25 @@
+++
title = "About"
description = "Hugo, the world's fastest framework for building websites"
date = "2019-02-28"
aliases = ["about-us", "about-hugo", "contact"]
author = "Hugo Authors"
+++
Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
Hugo makes use of a variety of open source projects including:
* https://github.com/yuin/goldmark
* https://github.com/alecthomas/chroma
* https://github.com/muesli/smartcrop
* https://github.com/spf13/cobra
* https://github.com/spf13/viper
Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
Learn more and contribute on [GitHub](https://github.com/gohugoio).

View File

@ -0,0 +1,3 @@
---
title: "Posts"
---

View File

@ -0,0 +1,44 @@
---
authors: ["Hugo Authors"]
title: "Emoji Support"
date: 2019-03-05
description: "Guide to emoji usage in Hugo"
tags: ["emoji"]
---
Emoji can be enabled in a Hugo project in a number of ways.
<!--more-->
The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
<p><span class="nowrap"><span class="emojify">🙈</span> <code>:see_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙉</span> <code>:hear_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙊</span> <code>:speak_no_evil:</code></span></p>
<br>
The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
***
**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
{{< highlight html >}}
.emoji {
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
}
{{< /highlight >}}
{{< css.inline >}}
<style>
.emojify {
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
font-size: 2rem;
vertical-align: middle;
}
@media screen and (max-width:650px) {
.nowrap {
display: block;
margin: 25px 0;
}
}
</style>
{{< /css.inline >}}

View File

@ -0,0 +1,139 @@
---
authors: ["Hugo Authors", "Someone Else"]
title: "Markdown Syntax Guide"
date: 2019-03-11
description: "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
tags: ["markdown", "css", "html"]
aliases: ["migrate-from-jekyl"]
---
This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
<!--more-->
## Headings
The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
# H1
## H2
### H3
#### H4
##### H5
###### H6
## Paragraph
Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
## Blockquotes
The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
#### Blockquote without attribution
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
> **Note** that you can use *Markdown syntax* within a blockquote.
#### Blockquote with attribution
> Don't communicate by sharing memory, share memory by communicating.<br>
> — <cite>Rob Pike[^1]</cite>
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
## Tables
Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
Name | Age
--------|------
Bob | 27
Alice | 23
#### Inline Markdown within tables
| Italics | Bold | Code |
| -------- | -------- | ------ |
| *italics* | **bold** | `code` |
## Code Blocks
#### Code block with backticks
```html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
```
#### Code block indented with four spaces
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
#### Code block with Hugo's internal highlight shortcode
{{< highlight html >}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
{{< /highlight >}}
## List Types
#### Ordered List
1. First item
2. Second item
3. Third item
#### Unordered List
* List item
* Another item
* And another item
#### Nested list
* Fruit
* Apple
* Orange
* Banana
* Dairy
* Milk
* Cheese
## Other Elements — abbr, sub, sup, kbd, mark
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
H<sub>2</sub>O
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.

View File

@ -0,0 +1,42 @@
---
authors: ["Example Author", "Hugo Authors"]
title: "Placeholder Text"
date: "2019-03-09"
description: "Lorem Ipsum Dolor Si Amet"
tags: ["markdown", "text"]
---
Lorem est tota propiore conpellat pectoribus de pectora summo. <!--more-->Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
1. Exierant elisi ambit vivere dedere
2. Duce pollice
3. Eris modo
4. Spargitque ferrea quos palude
Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
1. Comas hunc haec pietate fetum procerum dixit
2. Post torum vates letum Tiresia
3. Flumen querellas
4. Arcanaque montibus omnes
5. Quidem et
# Vagus elidunt
<svg class="canon" xmlns="http://www.w3.org/2000/svg" overflow="visible" viewBox="0 0 496 373" height="373" width="496"><g fill="none"><path stroke="#000" stroke-width=".75" d="M.599 372.348L495.263 1.206M.312.633l494.95 370.853M.312 372.633L247.643.92M248.502.92l246.76 370.566M330.828 123.869V1.134M330.396 1.134L165.104 124.515"></path><path stroke="#ED1C24" stroke-width=".75" d="M275.73 41.616h166.224v249.05H275.73zM54.478 41.616h166.225v249.052H54.478z"></path><path stroke="#000" stroke-width=".75" d="M.479.375h495v372h-495zM247.979.875v372"></path><ellipse cx="498.729" cy="177.625" rx=".75" ry="1.25"></ellipse><ellipse cx="247.229" cy="377.375" rx=".75" ry="1.25"></ellipse></g></svg>
[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
## Mane refeci capiebant unda mulcebat
Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.
Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides **parte**.
{{< css.inline >}}
<style>
.canon { background: white; width: 100%; height: auto; }
</style>
{{< /css.inline >}}

View File

@ -0,0 +1,31 @@
---
authors: ["Hugo Authors"]
title: "Rich Content"
date: "2019-03-10"
description: "A brief description of Hugo Shortcodes"
tags: ["shortcodes", "privacy"]
---
Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
<!--more-->
---
## YouTube Privacy Enhanced Shortcode
{{< youtube ZJthWmvUzzc >}}
<br>
---
## Twitter Simple Shortcode
{{< twitter_simple 1085870671291310081 >}}
<br>
---
## Vimeo Simple Shortcode
{{< vimeo_simple 48912912 >}}

View File

@ -0,0 +1,7 @@
---
title: 'We Help Business Grow'
button: 'Our Work'
weight: 1
---
Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. Numquam dolores mel eu, mea docendi omittantur et, mea ea duis erat. Elit melius cu ius. Per ex novum tantas putant, ei his nullam aliquam apeirian. Aeterno quaestio constituto sea an, no eum intellegat assueverit.

BIN
images/screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 KiB

BIN
images/tn.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

View File

@ -17,21 +17,20 @@
<ul>
{{ range .Pages }}
<li>
<span>
<i>
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
{{ .Date.Format "Jan 02, 2006" }}
</time>
</i>
</span>
<li><i>
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
{{ .Date.Format "Jan 02, 2006" }}
</time></i>
{{- if .OutputFormats.Get "html" }}
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ else }}
<li>
<p>No posts yet, check back soon.</p>
{{- else if .OutputFormats.Get "gemtext" }}
{{ with .OutputFormats.Get "gemtext" }}
<a href="{{ replace .Permalink "/gemini" "" 1 | safeURL }}">{{ end }}{{ .Title }}</a>
<small>(<a href="https://earnestma.xyz/what-is-gemini" target="_blank">what is gemini://?</a>)</small>
</li>
{{ end }}
{{ end }}
</ul>
{{ if .Data.Singular }}

View File

@ -0,0 +1,19 @@
# {{ $.Title | safeHTML }}
{{ trim (readFile (replace $.File.Path ".md" ".gmi")) "\n" | safeHTML }}
```ASCII
.
,O,
,OOO,
'oooooOOOOOooooo'
`OOOOOOOOOOO`
`OOOOOOO`
OOOO'OOOO
OOO' 'OOO
O' 'O
```
=> / Return to the homepage
{{ .Site.Copyright }}

29
layouts/blog/single.gmi Normal file
View File

@ -0,0 +1,29 @@
# {{ $.Title | safeHTML }}
{{ if ne .Lastmod .Date -}}
Published on {{ .Date.Format "Jan 02, 2006" }}, updated {{ dateFormat "2006-01-02" .Lastmod }}.
{{- else -}}
Published on {{ .Date.Format "Jan 02, 2006" }}.
{{- end }}
{{ trim (readFile (replace $.File.Path ".md" ".gmi")) "\n" | safeHTML }}
```ASCII
* . * . , *
. . . *
* . .' * , . . , *
. * .'
' . . * * .'.
. ' ' . . ' .
. * , * ' *
.
* . *
```
=> / Return to the homepage
{{- with .OutputFormats.Get "html" }}
=> {{ .Permalink }} See “{{ $.Title | safeHTML }}” on the WWW
{{- end }}
{{ with .Params.comments }}=> https://{{ .host }}/@{{ .user }}/{{ .id }} You may comment here{{ end }}
{{ .Site.Copyright }}

View File

@ -1,21 +1,22 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
<p>
&#8226; Published on
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
{{ .Date.Format "Jan 02, 2006" }}
</time>
<ul>
<li>
Published on {{ .Date.Format "Jan 02, 2006" }}
{{ if .Lastmod }}{{ if not (eq .Lastmod .Date )}}
<i>
(<b>updated</b> {{ dateFormat "2006-01-02" .Lastmod.Local }})
</i>
<i>(<b>updated</b> {{ dateFormat "2006-01-02" .Lastmod.Local }})</i>
{{ end }}{{ end }}
{{ with .Page.Params.Authors }}
{{ partial "taxonomy-authors.html" . -}}
{{ end }}
</p>
</li>
{{ with .OutputFormats.Get "gemtext" }}
<li>Read via <a href="{{replace .Permalink "/gemini" "" 1 | safeURL}}">Gemini</a></li>
{{- end }}
</ul>
<content>
{{ .Content }}
@ -28,13 +29,12 @@
{{ end }}
</p>
<a href="#"><button class="top">Back to top</button></a>
<!--<a href="sc"><button class="top">Load comments (Mastodon)</button></a>-->
{{ partial "fedi-comments" . }}
{{ if $.Site.Params.openring }}
{{ partial "openring-out" . -}}
{{ end }}
<a href="#"><button class="top">Back to top</button></a>
{{ end }}

13
layouts/index.gmi Normal file
View File

@ -0,0 +1,13 @@
{{ trim (readFile (replace (replace $.File.Path ".md" ".gmi") ".html" ".gmi")) "\n" | safeHTML }}
## Blog Posts
{{ with .OutputFormats.Get "html" -}}
=> {{ .Permalink }} More posts on WWW
{{- end -}}
{{ range (where .Site.RegularPages "Section" "blog") }}
{{- if .OutputFormats.Get "gemtext" }}
=> {{ replace .Permalink "/gemini" "" 1 }} {{ .Date.Format "Jan 02, 2006" }}: {{ .Title | safeHTML }}{{ end }}{{ end }}
{{ .Site.Copyright }}

View File

@ -0,0 +1,74 @@
{{ with .Params.comments }}
<h3>Comments</h3>
<p>
You may <a class="link" href="https://{{ .host }}/@{{ .user }}/{{ .id }}" target="_blank">view</a>
or <a class="link" href="https://{{ .host }}/interact/{{ .id }}?type=reply" target="_blank">reply</a>
if you have an account anywhere in the Fediverse.
</p>
<p id="mastodon-comments-list"><button id="load-comment">Load comments</button></p>
<noscript>
<p>
You would need JavaScript to view comments here on this page.
However, you can still <a class="link" href="https://{{ .host }}/@{{ .user }}/{{ .id }}" target="_blank">view</a>
or <a class="link" href="https://{{ .host }}/interact/{{ .id }}?type=reply" target="_blank">reply</a>
if you have an account anywhere in the Fediverse.
</p>
</noscript>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/2.2.7/purify.min.js "></script>
<script type="text/javascript">
function escapeHtml(unsafe) {
return unsafe
.replace(/&/g, "&amp;")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;")
.replace(/'/g, "&#039;");
}
document.getElementById("load-comment").addEventListener("click", function() {
document.getElementById("load-comment").innerHTML = "Loading... 🚀";
fetch('https://{{ .host }}/api/v1/statuses/{{ .id }}/context')
.then(function(response) {
return response.json();
})
.then(function(data) {
if(data['descendants'] &&
Array.isArray(data['descendants']) &&
data['descendants'].length > 0) {
document.getElementById('mastodon-comments-list').innerHTML = "";
data['descendants'].forEach(function(reply) {
reply.account.display_name = escapeHtml(reply.account.display_name);
reply.account.emojis.forEach(emoji => {
reply.account.display_name = reply.account.display_name.replace(`:${emoji.shortcode}:`,
`<img src="${escapeHtml(emoji.static_url)}" alt="Emoji ${emoji.shortcode}" height="20" width="20" />`);
});
mastodonComment =
`<div class="mastodon-comment">
<div class="avatar">
<img src="${escapeHtml(reply.account.avatar_static)}" height=60 width=60 alt="">
</div>
<div class="content">
<div class="author">
<a href="${reply.account.url}" rel="nofollow">
<span>${reply.account.display_name}</span>
<span class="disabled">${escapeHtml(reply.account.acct)}</span>
</a>
<a class="date" href="${reply.uri}" rel="nofollow">
${reply.created_at.substr(0, 10)}
</a>
</div>
<div class="mastodon-comment-content">${reply.content}</div>
</div>
</div>`;
document.getElementById('mastodon-comments-list').appendChild(DOMPurify.sanitize(mastodonComment, {'RETURN_DOM_FRAGMENT': true}));
});
} else {
document.getElementById('mastodon-comments-list').innerHTML = "<p>No comments, add yours?</p>";
}
});
});
</script>
{{ end }}

View File

@ -0,0 +1 @@
<!--Create your own copy of "layouts/partials/footer-custom.html" to overwrite this one-->

View File

@ -1,8 +1,13 @@
<p>
{{ .Site.Copyright }} • <a href="https://git.earne.link/earnestma/dracublog/" target="_blank" rel="noopener">theme</a>
{{ if $.GitInfo }}
• {{ .GitInfo.AbbreviatedHash }} (on {{ dateFormat "Jan 2, 16:03" .GitInfo.AuthorDate }})
{{ end }}
</p>
{{ if $.GitInfo }}
<p>
{{ .GitInfo.AbbreviatedHash }}
{{ range .Site.Menus.footer }}
<a href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
</p>
{{ end }}
{{ partial "footer-custom.html" . }}

View File

@ -3,4 +3,4 @@
[params]
openring = true
-->
<p><strong>You might not have set up your openring input file correctly.</strong></p>
<p><strong>You might not have set up your openring input file correctly</strong>, <i>or</i> forgot to disable it.</p>

View File

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2021 earnest ma
Copyright (c) 2021-2022 earnest ma
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in

View File

@ -1,15 +1,82 @@
# [Dracublog](https://www.earnestma.xyz/dracublog)
# Dracublog
[![git repo](https://img.shields.io/badge/repo-git-informational.svg?logo=gitea)](https://git.earne.link/earnestma/dracublog)
[![GitHub mirror](https://img.shields.io/badge/mirror-GitHub-black.svg?logo=github)](https://github.com/earnestma/dracublog)
A simple, fully-featured Hugo blogging theme with Dracula colors.
## Setup
Features:
- Basic support for [Gemini output](https://gemini.circumlunar.space/)
- Full content RSS feed by default
- Support for author/ multi-author posts
- Support for "comments" through Mastodon's API (toot)
- Optional openring styling (generates a list of recent posts from blogs you follow)
- `noindex` param to prevent certain pages from being indexed
## Install
**Tarball**
- Version: `https://git.earne.link/earnestma/dracublog/archive/$VERSION.tar.gz`
- Main branch: `https://git.earne.link/earnestma/dracublog/archive/main.tar.gz`
You can add `themes/dracublog` to `.gitignore`, and extract it there.
**Through a git submodule**
`git submodule add https://git.earne.link/earnestma/dracublog.git themes/dracublog`
## Configuration
## Gemini Output
Improvements welcome.
`config.toml`:
```toml
[mediaTypes]
[mediaTypes."text/gemini"]
suffixes = ["gmi"]
[outputFormats]
[outputFormats.Gemini]
name = "GEMTEXT"
isPlainText = true
isHTML = false
mediaType = "text/gemini"
protocol = "gemini://"
permalinkable = true
path = "gemini/"
[outputs]
section = ["HTML", "RSS"]
```
Blog posts (`post-filename.md`):
A post that has both html and gemini output:
```
title: "Example"
date: 2020-01-01 13:23:00 -0500
draft: false
outputs:
- html
- gemtext
```
Just gemini:
```
outputs:
- gemtext
```
Gemini content will go in the same `post-filename.gmi`. A Makefile or automated CI can be used to transfer output and exclude certain files/ directories to the correct directories.
## Contributing
See [contributing.md](contributing.md)
Please see [contributing.md](contributing.md). This project is licensed under the [MIT License](license.md).
## Thanks

View File

@ -5,11 +5,11 @@ name = "Dracublog"
license = "MIT"
licenselink = "https://git.earne.link/earnestma/dracublog/src/branch/main/license"
description = "A simple, fully-featured blogging theme with Dracula colors"
homepage = "http://www.earnestma.xyz/dracublog"
homepage = "https://git.earne.link/earnestma/dracublog"
tags = ["blog", "customizable", "dark", "fast", "modern", "responsive"]
features = ["blog", "customizable", "dark", "fast", "modern", "responsive"]
min_version = "0.67.1"
min_version = "0.88.1"
[author]
name = "earnest ma"
homepage = "https://www.earnestma.xyz"
homepage = "https://earnestma.com"

View File

@ -1 +1 @@
0.1.0
0.3.2