more re-orging
This commit is contained in:
parent
84d5134cf1
commit
925cc02961
9
.vscode/settings.json
vendored
9
.vscode/settings.json
vendored
@ -25,4 +25,13 @@
|
||||
},
|
||||
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
|
||||
"html.format.unformattedContentDelimiter": "<!--noformat-->",
|
||||
"files.exclude": {
|
||||
"**/.git": true,
|
||||
"**/.svn": true,
|
||||
"**/.hg": true,
|
||||
"**/CVS": true,
|
||||
"**/.DS_Store": true,
|
||||
"**/Thumbs.db": true,
|
||||
"**/.jekyll-cache": true,
|
||||
}
|
||||
}
|
@ -1,6 +1,7 @@
|
||||
# Site
|
||||
title: Evan Pratten
|
||||
description: Evan Pratten is a software developer, amateur radio operator, and more. This is his website.
|
||||
profile_photo: &profile_photo /assets/profile-photos/2022/460x460.webp
|
||||
encoding: utf-8
|
||||
source: src
|
||||
|
||||
@ -13,6 +14,11 @@ livereload: true
|
||||
baseurl: /
|
||||
url: https://ewpratten.com
|
||||
|
||||
# RSS
|
||||
feed:
|
||||
icon: *profile_photo
|
||||
path: rss.xml
|
||||
|
||||
# Markdown
|
||||
markdown: kramdown
|
||||
kramdown:
|
||||
|
37
config.toml
37
config.toml
@ -1,37 +0,0 @@
|
||||
base_url = "https://ewpratten.com"
|
||||
title = "Evan Pratten"
|
||||
description = "Evan Pratten is a software developer, amateur radio operator, and more. This is his website."
|
||||
default_language = "en"
|
||||
compile_sass = true
|
||||
build_search_index = true
|
||||
generate_feeds = true
|
||||
feed_filenames = ["rss.xml"]
|
||||
minify_html = false # This breaks mermaid diagrams :(
|
||||
ignored_content = ["content/@/blog/*.md", "sites/"]
|
||||
ignored_static = ["static/images/drawings/*/*.xcf", "sites/"]
|
||||
|
||||
[markdown]
|
||||
highlight_code = true
|
||||
render_emoji = true
|
||||
external_links_target_blank = true
|
||||
|
||||
[link_checker]
|
||||
skip_prefixes = []
|
||||
skip_anchor_prefixes = []
|
||||
internal_level = "error"
|
||||
external_level = "error"
|
||||
|
||||
[extra]
|
||||
# Website
|
||||
domain_name = "ewpratten.com"
|
||||
# Me
|
||||
name = "Evan Pratten"
|
||||
profession = "Software Developer"
|
||||
profile_photo = "/images/pfp/2022/460x460.webp"
|
||||
# Accounts
|
||||
email = "evan@ewpratten.com"
|
||||
github = "ewpratten"
|
||||
linkedin = "ewpratten"
|
||||
# Announcements
|
||||
# home_announcement = "Test content"
|
||||
# global_announcement = "Global announcement content test"
|
@ -1,41 +0,0 @@
|
||||
pre {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 0.9em;
|
||||
border-radius: 5px;
|
||||
padding: 0.5em 0.75em;
|
||||
overflow-x: scroll;
|
||||
|
||||
span {
|
||||
font-family: inherit !important;
|
||||
}
|
||||
}
|
||||
|
||||
del {
|
||||
code {
|
||||
text-decoration: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
:not(pre) > code {
|
||||
font-family: monospace, monospace;
|
||||
background-color: rgba(175, 184, 193, 0.2);
|
||||
border-radius: 5px;
|
||||
padding: 0 5px;
|
||||
font-size: 85%;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
kbd {
|
||||
display: inline-block;
|
||||
padding: 3px 5px;
|
||||
font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas,
|
||||
Liberation Mono, monospace;
|
||||
line-height: 10px;
|
||||
color: #24292f;
|
||||
vertical-align: middle;
|
||||
background-color: #f6f8fa;
|
||||
border: solid 1px rgba(175, 184, 193, 0.2);
|
||||
border-bottom-color: rgba(175, 184, 193, 0.2);
|
||||
border-radius: 6px;
|
||||
box-shadow: inset 0 -1px 0 rgba(175, 184, 193, 0.2);
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
details {
|
||||
background-color: #f4f4f4;
|
||||
border: 1px solid #d7dde3;
|
||||
border-radius: 5px;
|
||||
padding: 0.5em;
|
||||
|
||||
summary {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin: none;
|
||||
padding: none;
|
||||
border: none;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
& > :nth-child(2) {
|
||||
margin-top: 0.5em;
|
||||
padding-top: 0.5em;
|
||||
border-top: 1px solid #d7dde3;
|
||||
}
|
||||
}
|
@ -1,94 +0,0 @@
|
||||
header.intro-card {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
|
||||
width: max-content;
|
||||
max-width: 95vw;
|
||||
|
||||
margin: 2em auto;
|
||||
|
||||
font-family: "IBM Plex Serif", serif;
|
||||
|
||||
// Image Controls
|
||||
&[data-size="large"] {
|
||||
img {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
// Text column
|
||||
.header-text {
|
||||
margin-left: 1em;
|
||||
height: max-content;
|
||||
|
||||
span {
|
||||
margin: 0;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
.header-name {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
// Links
|
||||
&[data-size="large"] {
|
||||
.header-links {
|
||||
margin: 0;
|
||||
padding-left: 0;
|
||||
|
||||
li {
|
||||
list-style-type: none;
|
||||
height: 1.25em;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
a {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
||||
img {
|
||||
display: inline-block;
|
||||
margin-right: 1px;
|
||||
height: 1em;
|
||||
width: 1em;
|
||||
filter: invert(9%) sepia(97%) saturate(6581%) hue-rotate(247deg)
|
||||
brightness(94%) contrast(144%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Alter the design if in small mode
|
||||
&[data-size="small"] {
|
||||
hr {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header-links {
|
||||
display: none;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
header.page-header {
|
||||
margin-bottom: 1em;
|
||||
|
||||
.subtitle {
|
||||
font-family: "IBM Plex Serif", serif;
|
||||
font-size: 1.25em;
|
||||
color: gray;
|
||||
}
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin-top: 24px;
|
||||
margin-bottom: 16px;
|
||||
padding-bottom: 0.3em;
|
||||
font-weight: 600;
|
||||
line-height: 1.25;
|
||||
|
||||
border-bottom: 1px solid #d7dde3;
|
||||
|
||||
font-family: "IBM Plex Serif", serif;
|
||||
font-kerning: normal;
|
||||
font-variant-ligatures: normal;
|
||||
|
||||
code {
|
||||
padding: 0 0.2em;
|
||||
font-size: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
img {
|
||||
max-width: 100%;
|
||||
border-radius: 5px;
|
||||
display: block;
|
||||
margin: auto;
|
||||
|
||||
// NOTE: Enabling this breaks white images
|
||||
// box-shadow: 0 3px 3px #717171;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
ol,
|
||||
ul {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
padding-left: 2em;
|
||||
ol,
|
||||
ul {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
// list-style-type: lower-roman;
|
||||
// ol,
|
||||
// ul {
|
||||
// list-style-type: lower-alpha;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
font-size: 1.25rem;
|
||||
& > p {
|
||||
margin-top: 16px;
|
||||
}
|
||||
& + li {
|
||||
margin-top: 0.25em;
|
||||
}
|
||||
}
|
@ -1,33 +0,0 @@
|
||||
.music-info-card {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
border-radius: 5px;
|
||||
background-color: #f6f8fa;
|
||||
|
||||
@media screen and (max-width: 452px) {
|
||||
flex-wrap: wrap;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 200px;
|
||||
border-top-left-radius: inherit;
|
||||
border-bottom-left-radius: inherit;
|
||||
border-top-right-radius: unset;
|
||||
border-bottom-right-radius: unset;
|
||||
}
|
||||
|
||||
& > div {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0 1em;
|
||||
|
||||
h1.music-title {
|
||||
// font-size: 2.5em;
|
||||
// border-bottom: 1px solid gray;
|
||||
margin-top: 0.25em !important;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,49 +0,0 @@
|
||||
blockquote,
|
||||
.text-note {
|
||||
margin: 0;
|
||||
padding: 0 1em;
|
||||
margin-bottom: 1em;
|
||||
border-left-width: 0.25em;
|
||||
border-left-style: solid;
|
||||
|
||||
& > :first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
& > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
blockquote {
|
||||
color: #57606a;
|
||||
border-left-color: #d0d7de;
|
||||
}
|
||||
|
||||
.text-note {
|
||||
color: black;
|
||||
|
||||
.note-title {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
&[data-type="info"] {
|
||||
border-left-color: #0969da;
|
||||
.note-title {
|
||||
color: #0969da;
|
||||
}
|
||||
}
|
||||
|
||||
&[data-type="note"] {
|
||||
border-left-color: #9a6700;
|
||||
.note-title {
|
||||
color: #9a6700;
|
||||
}
|
||||
}
|
||||
|
||||
&[data-type="warning"] {
|
||||
border-left-color: #cf222e;
|
||||
.note-title {
|
||||
color: #cf222e;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
table {
|
||||
border-spacing: 0;
|
||||
border-collapse: collapse;
|
||||
display: block;
|
||||
width: max-content;
|
||||
max-width: 100%;
|
||||
overflow: auto;
|
||||
|
||||
// NOTE: Things don't look great if you do this
|
||||
margin: auto;
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 0;
|
||||
padding: 6px 13px;
|
||||
border: 1px solid #d0d7de;
|
||||
|
||||
&:has(> audio) {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
audio {
|
||||
display: block;
|
||||
width: 100%;
|
||||
min-width: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
th {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
tr {
|
||||
background-color: #fff;
|
||||
border-top: 1px solid #d7dde3;
|
||||
|
||||
&:nth-child(2n) {
|
||||
background-color: #f6f8fa;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
padding: 0 0.25em;
|
||||
font-size: 1.25rem;
|
||||
|
||||
text-align: justify;
|
||||
hyphens: auto;
|
||||
font-kerning: normal;
|
||||
font-variant-ligatures: normal;
|
||||
// font-variant-ligatures: common-ligatures contextual discretionary-ligatures historical-ligatures;
|
||||
}
|
||||
|
||||
.no-justify {
|
||||
p {
|
||||
text-align: left !important;
|
||||
hyphens: none;
|
||||
}
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
153
sass/styles.scss
153
sass/styles.scss
@ -1,153 +0,0 @@
|
||||
// Note: Some things are broken out into smaller files
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
|
||||
// @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
|
||||
|
||||
$content-max-width: 800px;
|
||||
|
||||
@import "elements/header.scss";
|
||||
|
||||
body {
|
||||
margin: 1em;
|
||||
// font-family: serif;
|
||||
font-family: "Overlock", sans-serif;
|
||||
font-optical-sizing: auto;
|
||||
background-color: #f7f4f4;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: blue !important;
|
||||
&:visited {
|
||||
color: blue;
|
||||
}
|
||||
&:hover {
|
||||
color: blueviolet;
|
||||
}
|
||||
}
|
||||
|
||||
nav {
|
||||
max-width: $content-max-width;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
|
||||
font-family: "IBM Plex Serif", serif;
|
||||
font-weight: 500;
|
||||
|
||||
ul {
|
||||
max-width: 100%;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: max-content;
|
||||
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
|
||||
li {
|
||||
list-style-type: none;
|
||||
|
||||
&:not(:first-child)::before {
|
||||
content: " · ";
|
||||
margin-left: 0.25em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
hr:not(:first-child) {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
main {
|
||||
max-width: $content-max-width;
|
||||
margin: auto;
|
||||
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
word-wrap: break-word;
|
||||
color: #24292f;
|
||||
|
||||
.title {
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
@import "elements/code.scss";
|
||||
@import "elements/headings.scss";
|
||||
@import "elements/list.scss";
|
||||
@import "elements/quote.scss";
|
||||
@import "elements/table.scss";
|
||||
@import "elements/text.scss";
|
||||
@import "elements/image.scss";
|
||||
@import "elements/details.scss";
|
||||
@import "elements/music-info-card.scss";
|
||||
}
|
||||
|
||||
footer {
|
||||
max-width: $content-max-width;
|
||||
text-align: center;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
#sponsor-notice {
|
||||
background-color: rgb(253, 204, 173);
|
||||
width: max-content;
|
||||
margin: auto;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.gray {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.hover-help {
|
||||
&:hover {
|
||||
cursor: help;
|
||||
}
|
||||
border-bottom: 1px double rgb(171, 167, 167);
|
||||
}
|
||||
|
||||
.mobile-hidden {
|
||||
@media only screen and (max-width: 650px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.small {
|
||||
font-size: 0.5em;
|
||||
}
|
||||
|
||||
.hover-shadow {
|
||||
&:hover {
|
||||
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.announcement {
|
||||
max-width: $content-max-width - 40px;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
background-color: rgb(239, 239, 239);
|
||||
margin-top: 0;
|
||||
padding: 0.25em;
|
||||
border: 2px dashed grey;
|
||||
border-top: none;
|
||||
color: dimgray;
|
||||
}
|
||||
|
||||
.blog-post-list {
|
||||
span {
|
||||
font-variant-numeric: tabular-nums;
|
||||
color: gray;
|
||||
|
||||
&[data-draft="true"] {
|
||||
color: red !important;
|
||||
}
|
||||
}
|
||||
}
|
@ -10,13 +10,15 @@
|
||||
<title>
|
||||
{% if page.override_title %}{{page.override_title}}{% else %}{{page.title}} | {{site.title}}{% endif %}
|
||||
</title>
|
||||
<link rel="shortcut icon" type="image/jpg" href="{{ site.profile_photo }}" />
|
||||
<link rel="canonical" href="{{ site.url }}{{ page.url | replace: '.html', '' }}" />
|
||||
<link rel="stylesheet" href="/assets/css/default_compiled.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<div class="title-card">
|
||||
<img src="/assets/profile-photos/2022/460x460.webp" alt="A photo of Evan Pratten">
|
||||
<img src="{{ site.profile_photo }}" alt="A photo of Evan Pratten">
|
||||
<div>
|
||||
<span class="name">Evan Pratten</span>
|
||||
<hr>
|
||||
|
@ -8,6 +8,7 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>"{{page.title}}" by {{site.title}}</title>
|
||||
<link rel="shortcut icon" type="image/jpg" href="{{ site.profile_photo }}" />
|
||||
<link rel="stylesheet" href="/assets/css/photo_compiled.css">
|
||||
</head>
|
||||
|
||||
|
@ -3,17 +3,18 @@ layout: default
|
||||
title: Blog
|
||||
---
|
||||
|
||||
<p>The following is a list of articles I've written. This is also available in <a href="/rss.xml">RSS</a> format.</p>
|
||||
|
||||
{% assign grouped_posts = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
|
||||
|
||||
{% for group in grouped_posts %}
|
||||
<h2>{{ group.name }}</h2>
|
||||
<ul>
|
||||
{% for post in group.items %}
|
||||
<li>
|
||||
|
||||
<span>{{ post.date | date: "%Y-%m-%d" }}:</span>
|
||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
<h2>{{ group.name }}</h2>
|
||||
<ul>
|
||||
{% for post in group.items %}
|
||||
<li>
|
||||
<span>{{ post.date | date: "%Y-%m-%d" }}:</span>
|
||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
@ -1,17 +0,0 @@
|
||||
export function onRequest(context) {
|
||||
return new Response(
|
||||
JSON.stringify({
|
||||
"links": [
|
||||
{
|
||||
"href": "https://ewpratten.com/api/activitypub/nodeinfo",
|
||||
"rel": "http://nodeinfo.diaspora.software/ns/schema/2.0"
|
||||
}
|
||||
]
|
||||
}),
|
||||
{
|
||||
headers: {
|
||||
"Content-Type": "application/jrd+json",
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
export function onRequest(context) {
|
||||
return new Response(
|
||||
JSON.stringify({
|
||||
"subject": "acct:evan@ewpratten.com",
|
||||
"aliases": [],
|
||||
"links": [
|
||||
{
|
||||
"rel": "self",
|
||||
"type": "application/activity+json",
|
||||
"href": "https://ewpratten.com/api/activitypub/users/evan"
|
||||
}
|
||||
]
|
||||
}),
|
||||
{
|
||||
headers: {
|
||||
"Content-Type": "application/jrd+json",
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
@ -1,45 +0,0 @@
|
||||
const RSS_ITEM_PATTERN = /<item>\s+<title>([^<]+)<\/title>\s+<pubDate>([^<]+)<\/pubDate>\s+<author>([^<]+)<\/author>\s+<link>([^<]+)<\/link>\s+<guid>([^<]+)<\/guid>\s+<description[^>]+>([^<]+)<\/description>\s+<\/item>/gm;
|
||||
|
||||
export async function onRequest(context) {
|
||||
|
||||
// Request our own RSS feed
|
||||
let rss_feed = await fetch("https://ewpratten.com/feed.xml");
|
||||
|
||||
// Parse the RSS feed
|
||||
let rss_data = await rss_feed.text();
|
||||
let items = rss_data.matchAll(RSS_ITEM_PATTERN);
|
||||
|
||||
// Generate the outbox content
|
||||
return new Response(
|
||||
JSON.stringify({
|
||||
"metadata": {},
|
||||
"openRegistrations": false,
|
||||
"protocols": [
|
||||
"activitypub"
|
||||
],
|
||||
"services": {
|
||||
"inbound": [],
|
||||
"outbound": []
|
||||
},
|
||||
"software": {
|
||||
"name": "Cloudflare Workers",
|
||||
"version": "0.0.0"
|
||||
},
|
||||
"usage": {
|
||||
"localPosts": items.length,
|
||||
"users": {
|
||||
"activeHalfyear": 1,
|
||||
"activeMonth": 1,
|
||||
"total": 1
|
||||
}
|
||||
},
|
||||
"version": "2.0"
|
||||
}
|
||||
),
|
||||
{
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
@ -1,46 +0,0 @@
|
||||
const RSS_ITEM_PATTERN = /<item>\s+<title>([^<]+)<\/title>\s+<pubDate>([^<]+)<\/pubDate>\s+<author>([^<]+)<\/author>\s+<link>([^<]+)<\/link>\s+<guid>([^<]+)<\/guid>\s+<description[^>]+>([^<]+)<\/description>\s+<\/item>/gm;
|
||||
|
||||
export async function onRequest(context) {
|
||||
|
||||
// Request our own RSS feed
|
||||
let rss_feed = await fetch("https://ewpratten.com/feed.xml");
|
||||
|
||||
// Parse the RSS feed
|
||||
let rss_data = await rss_feed.text();
|
||||
let items = rss_data.matchAll(RSS_ITEM_PATTERN);
|
||||
|
||||
// Generate the outbox content
|
||||
return new Response(
|
||||
JSON.stringify({
|
||||
"@context": "https://www.w3.org/ns/activitystreams",
|
||||
"id": "https://ewpratten.com/api/activitypub/outbox",
|
||||
"summary": "Evan Pratten",
|
||||
"type": "OrderedCollection",
|
||||
"totalItems": items.length,
|
||||
"orderedItems": Array.from(items).map((item) => {
|
||||
return {
|
||||
"@context": "https://www.w3.org/ns/activitystreams",
|
||||
"id": item[5] + "-create",
|
||||
"type": "Create",
|
||||
"actor": "https://ewpratten.com/api/activitypub/users/evan",
|
||||
"object": {
|
||||
"id": item[5],
|
||||
"type": "Note",
|
||||
"content": item[1],
|
||||
"url": item[4],
|
||||
"attributedTo": "https://ewpratten.com/api/activitypub/users/evan",
|
||||
"to": [
|
||||
"https://www.w3.org/ns/activitystreams#Public"
|
||||
],
|
||||
"published": item[2],
|
||||
}
|
||||
}
|
||||
})
|
||||
}),
|
||||
{
|
||||
headers: {
|
||||
"Content-Type": "application/activity+json",
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
@ -1,44 +0,0 @@
|
||||
export function onRequest(context) {
|
||||
return new Response(
|
||||
JSON.stringify({
|
||||
"@context": [
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
"https://w3id.org/security/v1",
|
||||
{
|
||||
"@language": "en"
|
||||
}
|
||||
],
|
||||
"type": "Person",
|
||||
"manuallyApprovesFollowers": true,
|
||||
"discoverable": true,
|
||||
"id": "https://ewpratten.com/api/activitypub/users/evan",
|
||||
"outbox": "https://ewpratten.com/api/activitypub/inbox",
|
||||
"outbox": "https://ewpratten.com/api/activitypub/outbox",
|
||||
"preferredUsername": "evan",
|
||||
"name": "Evan Pratten",
|
||||
"summary": "I make things",
|
||||
"icon": [
|
||||
"https://ewpratten.com/images/pfp/2022/460x460.webp"
|
||||
],
|
||||
"attachment": [
|
||||
{
|
||||
"name": "Website",
|
||||
"type": "PropertyValue",
|
||||
"value": "<a href=\"https://ewpratten.com\" rel=\"me nofollow noopener noreferrer\" target=\"_blank\">ewpratten.com</a>"
|
||||
}
|
||||
],
|
||||
"publicKey": {
|
||||
"@type": "Key",
|
||||
"id": "https://ewpratten.com/api/activitypub/users/evan#main-key",
|
||||
"owner": "https://ewpratten.com/api/activitypub/users/evan",
|
||||
"publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJwe4jxrpiDx0vzqnoc+3Mja7X\nz73/NxfDqG9Mu+k6Vs87N/+kV4BbsbJ/vtdYAg58+iMDmyRw48CzaXkPDgiCh3RZ\nFc/8GniBSEucjt/QEiAitV48aykqWyXtln0hAmQrjoEeE9DRxS3eyF7FVE2GhkTz\n1YqBabOMpHA1uGOp7QIDAQAB\n-----END PUBLIC KEY-----"
|
||||
},
|
||||
"url": "https://ewpratten.com",
|
||||
}),
|
||||
{
|
||||
headers: {
|
||||
"Content-Type": "application/activity+json",
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>404: Not Found</h1>
|
||||
<p>There is a large chance you reached this page through a <code>retrylife.ca</code> or <code>va3zza.com</code> link. I
|
||||
have recently changed my primary domain name to <code>ewpratten.com</code></p>
|
||||
<p>I would appreciate if you could send me an email letting me know what you clicked to get here.</p>
|
||||
<p>Click one of the links at the top of this page to navigate through the new website.</p>
|
||||
{% endblock content %}
|
@ -1,202 +0,0 @@
|
||||
{# Some common data #}
|
||||
{%if page.path or section.path %}
|
||||
{% set title = page.title | default(value=section.title) %}
|
||||
{% set path = page.path | default(value=section.path) %}
|
||||
{% set content = page.content | default(value=section.content) %}
|
||||
{% set extra = page.extra | default(value=section.extra) %}
|
||||
{% set is_blog_post = path != "/blog/" and path is starting_with("/blog/") %}
|
||||
{% set is_photo_page = path != "/photography/" and path is starting_with("/photography/") %}
|
||||
{% else %}
|
||||
{# If here, we are on the 404 page #}
|
||||
{% set title = "NOT FOUND" %}
|
||||
{% set path = "/404" %}
|
||||
{% set extra = [] %}
|
||||
{% set is_blog_post = false %}
|
||||
{% set is_photo_page = false %}
|
||||
{% endif %}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
{% block head %}
|
||||
<!--noformat-->
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{title}} | {{config.title}}</title>
|
||||
<link rel="shortcut icon" type="image/jpg" href="{{config.extra.profile_photo | safe}}" />
|
||||
|
||||
{% if current_url %}<link rel="canonical" href="{{current_url | safe}}" />{% endif %}
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS"
|
||||
href="{{get_url(path=config.feed_filenames[0], trailing_slash=false) | safe}}">
|
||||
|
||||
{# OpenGraph #}
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="og:site" content="{{config.extra.domain_name}}" />
|
||||
<meta name="og:site_name" content="{{config.title}}" />
|
||||
{% set opengraph_image = extra.og_image | default(value=config.extra.profile_photo)%}
|
||||
<meta name="og:image" content="{{opengraph_image | safe}}" />
|
||||
{% if extra.og_description %}
|
||||
<meta property="og:description" content="{{extra.og_description}}" />
|
||||
<meta property="description" content="{{extra.og_description}}" />
|
||||
<meta name="description" content="{{extra.og_description}}">
|
||||
{% elif page.description %}
|
||||
<meta property="og:description" content="{{page.description}}" />
|
||||
<meta property="description" content="{{page.description}}" />
|
||||
<meta name="description" content="{{page.description}}">
|
||||
{% endif %}
|
||||
<meta property="og:title" content="{{title}} - {{config.title}}" />
|
||||
{% if page.path %}<meta property="og:type" content="{{extra.og_type | default(value='article')}}" />{% endif %}
|
||||
{% if page.date %}<meta property="article:published_time" content="{{page.date}}" />{% endif %}
|
||||
|
||||
{# Fonts #}
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
|
||||
|
||||
{# Allow pages to import custom CSS if they need #}
|
||||
{% for url in extra.css_import | default(value=[]) %}
|
||||
<link rel="stylesheet" href="{{url}}"> <!-- Requested by Page -->
|
||||
{% endfor %}
|
||||
|
||||
{# Allow pages to import custom Head JS if they need #}
|
||||
{% for url in extra.head_js_import | default(value=[]) %}
|
||||
<script src="{{url}}"></script> <!-- Requested by Page -->
|
||||
{% endfor %}
|
||||
|
||||
<link rel="stylesheet" href="/styles.css">
|
||||
<!--noformat-->
|
||||
{% endblock head %}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
{# Heading section (profile photo & name) #}
|
||||
<header data-size="{% if path == '/' %}large{% else %}small{% endif %}" class="intro-card">
|
||||
<img src="{{config.extra.profile_photo}}" alt="Evan Pratten">
|
||||
<div class="header-text">
|
||||
<span class="header-name">Evan Pratten</span><br>
|
||||
<span class="header-tagline">Software Developer</span>
|
||||
<hr>
|
||||
<ul class="header-links">
|
||||
<li>
|
||||
<a target="_blank" href="mailto:{{config.extra.email}}" rel="me">
|
||||
<img src="/dist/line-awesome/envelope.svg" alt="email: " loading="lazy">
|
||||
<span>{{config.extra.email}}</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://linkedin.com/in/{{config.extra.linkedin}}" rel="me">
|
||||
<img src="/dist/line-awesome/linkedin.svg" alt="linkedin: " loading="lazy">
|
||||
<span>{{config.extra.linkedin}}</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{# Navigation #}
|
||||
<nav>
|
||||
<hr>
|
||||
<ul>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/blog">Blog</a></li>
|
||||
<li><a href="/radio">Radio</a></li>
|
||||
<li><a href="/music">Music</a></li>
|
||||
{# <li><a href="/projects">Projects</a></li> #}
|
||||
{# <li><a href="/hobbies">Hobbies</a></li> #}
|
||||
{# <li><a href="/photography">Photos</a></li> #}
|
||||
{# <li><a href="/contact">Contact</a></li> #}
|
||||
{# <li><a href="/hobbies">More</a></li> #}
|
||||
</ul>
|
||||
<hr>
|
||||
</nav>
|
||||
|
||||
{# Announcement Handling #}
|
||||
{% if config.extra.home_announcement and path == "/" %}
|
||||
<div class="announcement">
|
||||
<span>{{config.extra.home_announcement | safe}}</span>
|
||||
</div>
|
||||
{% elif config.extra.global_announcement %}
|
||||
<div class="announcement">
|
||||
<span>{{config.extra.global_announcement | safe}}</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{# Page Content #}
|
||||
<main>
|
||||
{% block content %}
|
||||
<article>
|
||||
<header class="page-header">
|
||||
{% if not extra.no_auto_title %}
|
||||
<h1 class="title">{{title}}</h1>
|
||||
{% endif %}
|
||||
{% if page.description %}
|
||||
<span class="subtitle">{{page.description}}</span>
|
||||
{% endif %}
|
||||
</header>
|
||||
|
||||
{{ content | safe }}
|
||||
</article>
|
||||
{% endblock content %}
|
||||
</main>
|
||||
|
||||
{# Footer #}
|
||||
<footer>
|
||||
{# {% if is_blog_post or is_photo_page %}
|
||||
<br>
|
||||
<p id="sponsor-notice">
|
||||
Consider making
|
||||
<a href="https://ewp.fyi/donate" style="text-decoration:underline;" target="_blank">a small donation</a>
|
||||
to support my work!
|
||||
</p>
|
||||
{% endif %} #}
|
||||
<br>
|
||||
<hr>
|
||||
<p id="copyright">
|
||||
Copyright © 2017 - {{ now() | date(format="%Y") }}
|
||||
<strong {% if config.extra.commit %} title="Commit: {{config.extra.commit}}" {% endif %}>
|
||||
Evan Warren Pratten
|
||||
</strong>
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
<div>
|
||||
{# Goatcounter #}
|
||||
<script data-goatcounter="https://analytics.ewpratten.com/count" async src="//gc.zgo.at/count.js"></script>
|
||||
|
||||
{# Google Analytics #}
|
||||
<script defer src="https://www.googletagmanager.com/gtag/js?id=G-5912H4H03P"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag() { dataLayer.push(arguments); }
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'G-5912H4H03P');
|
||||
</script>
|
||||
|
||||
{# Mermaid #}
|
||||
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js" defer></script>
|
||||
<script>mermaid.initialize({ startOnLoad: true });</script>
|
||||
|
||||
{# MathJax #}
|
||||
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML' async
|
||||
defer></script>
|
||||
<script type="text/x-mathjax-config">
|
||||
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMath: [ ['$$','$$'] ]}});
|
||||
</script>
|
||||
</div>
|
||||
|
||||
{# Allow pages to import custom CSS if they need #}
|
||||
<div>
|
||||
{% for url in extra.js_import | default(value=[]) %}
|
||||
<script async src="{{url}}" defer></script> <!-- Requested by Page -->
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
{# Used to for brid.gy verification #}
|
||||
<a href="https://ewpratten.com" class="h-card" rel="me" hidden>Evan Pratten</a>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,28 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
|
||||
{% block content %}
|
||||
|
||||
{{super()}}
|
||||
|
||||
{# Posts shall be broken down by year #}
|
||||
{% set title_year = "3000" %}
|
||||
{% for page in section.pages %}
|
||||
{% if not page.extra.hidden %}
|
||||
{% set page_year = page.date | date(format="%Y")%}
|
||||
{% if page_year != title_year %}
|
||||
{% set_global title_year = page_year %}
|
||||
|
||||
</ul>
|
||||
<h2>{{title_year}}</h2>
|
||||
<ul class="blog-post-list">
|
||||
{% endif %}
|
||||
<li>
|
||||
<span class="date" {% if page.draft %}data-draft="true" {% endif %}>{{page.date}}:</span>
|
||||
<a href="{{page.path | safe}}">{{page.title}}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endblock content %}
|
@ -1,77 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block head %}
|
||||
{{super()}}
|
||||
|
||||
{# JSON LD #}
|
||||
<script type="application/ld+json">
|
||||
[
|
||||
{
|
||||
"@context": "http://schema.org",
|
||||
"@type": "WebSite",
|
||||
"additionalType": [
|
||||
"CreativeWork",
|
||||
"Person"
|
||||
],
|
||||
"url": "{{config.base_url | safe}}",
|
||||
"name": "Evan Pratten",
|
||||
"alternateName": "ewpratten",
|
||||
"headline": "{{section.title}}",
|
||||
"image": "{{config.extra.profile_photo | safe}}",
|
||||
"logo": "{{config.extra.profile_photo | safe}}",
|
||||
"inLanguage": "en-CA",
|
||||
"author": "Evan Pratten",
|
||||
"description": "{{config.description}}",
|
||||
"disambiguatingDescription": "Personal website of Evan Pratten",
|
||||
"publisher": {
|
||||
"@type": "Organization",
|
||||
"name": "Evan Pratten",
|
||||
"url": "https://ewpratten.com",
|
||||
"logo": {
|
||||
"@type": "ImageObject",
|
||||
"url": "{{config.extra.profile_photo | safe}}",
|
||||
"width": "460",
|
||||
"height": "460"
|
||||
}
|
||||
},
|
||||
"potentialAction": {
|
||||
"@type": "SearchAction",
|
||||
"target": {
|
||||
"@type": "EntryPoint",
|
||||
"urlTemplate": "{{config.base_url | safe}}/search?q={search_term_string}"
|
||||
},
|
||||
"query-input": "required name=search_term_string"
|
||||
},
|
||||
"keywords": [
|
||||
"Evan Pratten",
|
||||
"Software",
|
||||
"Music",
|
||||
"Photography",
|
||||
"Hobby",
|
||||
"Blog"
|
||||
]
|
||||
},
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@graph": [
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "SiteNavigationElement",
|
||||
"name": "Blog",
|
||||
"url": "{{config.base_url | safe}}/blog"
|
||||
},
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "SiteNavigationElement",
|
||||
"name": "Contact",
|
||||
"url": "{{config.base_url | safe}}/contact"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
</script>
|
||||
{% endblock head %}
|
||||
|
||||
{% block content %}
|
||||
{{ section.content | safe}}
|
||||
{% endblock content %}
|
@ -1,51 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!--noformat-->
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{page.title}} | {{config.title}}</title>
|
||||
<link rel="shortcut icon" type="image/jpg" href="{{config.extra.profile_photo | safe}}" />
|
||||
|
||||
{% if current_url %}<link rel="canonical" href="{{current_url | safe}}" />{% endif %}
|
||||
|
||||
{# OpenGraph #}
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="og:site" content="{{config.extra.domain_name}}" />
|
||||
<meta name="og:site_name" content="{{config.title}}" />
|
||||
<meta name="og:image" content="{{config.extra.profile_photo | safe}}" />
|
||||
<meta property="og:title" content="{{page.title}} - {{config.title}}" />
|
||||
<!--noformat-->
|
||||
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
|
||||
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
|
||||
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
|
||||
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
|
||||
{# <script src="https://unpkg.com/pouchdb@^5.2.0/dist/pouchdb.js"></script>
|
||||
<script src="https://unpkg.com/leaflet.tilelayer.pouchdbcached@latest/L.TileLayer.PouchDBCached.js"></script> #}
|
||||
</head>
|
||||
|
||||
<body style="margin:0;padding:0;">
|
||||
|
||||
|
||||
{# Page Content #}
|
||||
<main>
|
||||
<div id="map" style="width:100vw;height:100vh;"></div>
|
||||
|
||||
{{page.content | safe}}
|
||||
</main>
|
||||
|
||||
{# A bit of a hack to get VSCode to format this document correctly #}
|
||||
{% if page.extra.bg_color %}
|
||||
<script>
|
||||
document.head.insertAdjacentHTML('beforeend', '<style>.leaflet-container { background-color: {{page.extra.bg_color}} !important; }</style>');
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
{# Goatcounter #}
|
||||
<script data-goatcounter="https://analytics.ewpratten.com/count" async src="//gc.zgo.at/count.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,50 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block head %}
|
||||
{{super()}}
|
||||
|
||||
{# JSON LD #}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "http://schema.org",
|
||||
"@type": "BlogPosting",
|
||||
"url": "https://ewpratten.com{{page.path | safe}}",
|
||||
"headline": "{{page.title}}",
|
||||
"dateCreated": "{{page.date}}T00:00:00",
|
||||
"datePublished": "{{page.date}}T00:00:00",
|
||||
"dateModified": "{{page.date}}T00:00:00",
|
||||
"inLanguage": "en-CA",
|
||||
"isFamilyFriendly": "true",
|
||||
"accountablePerson": {
|
||||
"@type": "Person",
|
||||
"name": "Evan Pratten",
|
||||
"url": "https://ewpratten.com"
|
||||
},
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Evan Pratten",
|
||||
"url": "https://ewpratten.com"
|
||||
},
|
||||
"creator": {
|
||||
"@type": "Person",
|
||||
"name": "Evan Pratten",
|
||||
"url": "https://ewpratten.com"
|
||||
},
|
||||
"publisher": {
|
||||
"@type": "Organization",
|
||||
"name": "Evan Pratten",
|
||||
"url": "https://ewpratten.com",
|
||||
"logo": {
|
||||
"@type": "ImageObject",
|
||||
"url": "{{config.extra.profile_photo | safe}}",
|
||||
"width": "460",
|
||||
"height": "460"
|
||||
}
|
||||
},
|
||||
"mainEntityOfPage": "True",
|
||||
"keywords": [],
|
||||
"genre": [],
|
||||
"articleSection": "Blog Post"
|
||||
}
|
||||
</script>
|
||||
{% endblock head %}
|
@ -1,24 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
|
||||
{% block content %}
|
||||
|
||||
{{super()}}
|
||||
|
||||
{% for page in section.pages %}
|
||||
{% if not page.extra.hidden %}
|
||||
|
||||
<a href="{{page.path | safe}}" style="color:black !important;">
|
||||
<img src="{{page.extra.cover_image | safe}}" alt="{{page.title}}" style="width:100%;" loading="lazy">
|
||||
<div style="display:flex;justify-content:space-between;">
|
||||
<span><strong>{{page.title}}</strong></span>
|
||||
<span class="gray">{{page.date}}</span>
|
||||
</div>
|
||||
</a>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
{% endblock content %}
|
@ -1,8 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
|
||||
{% block content %}
|
||||
|
||||
{{super()}}
|
||||
|
||||
{% endblock content %}
|
@ -1 +0,0 @@
|
||||
<span style="display: block; width: 100%; margin: auto; text-align: center; margin-bottom: 1em;">…</span>
|
@ -1,5 +0,0 @@
|
||||
<div class="zola-github-card" >
|
||||
<a href="https://github.com/{{repo}}">
|
||||
<img src="https://opengraph.githubassets.com/1/{{repo}}" alt="GitHub: {{repo}}">
|
||||
</a>
|
||||
</div>
|
@ -1,7 +0,0 @@
|
||||
<div class="music-info-card">
|
||||
<img src="{{cover}}" alt="Cover Image">
|
||||
<div>
|
||||
<h1 class="music-title">{{page.title}}</h1>
|
||||
{{body | safe}}
|
||||
</div>
|
||||
</div>
|
@ -1,8 +0,0 @@
|
||||
<div class="text-note" data-type="{{type | default(value='info')}}">
|
||||
<div class="note-title">
|
||||
{{type | default(value='info') | capitalize}}
|
||||
</div>
|
||||
<div class="note-content">
|
||||
{{body | safe}}
|
||||
</div>
|
||||
</div>
|
@ -1,29 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
|
||||
{% block content %}
|
||||
|
||||
{{super()}}
|
||||
|
||||
{% for page in section.pages %}
|
||||
{% if not page.extra.hidden %}
|
||||
|
||||
<a href="{{page.path | safe}}" style="color:black !important;">
|
||||
{% if page.extra.cover_img %}
|
||||
<img src="{{page.extra.cover_img | safe}}" alt="{{page.title}}" style="width:100%;" loading="lazy">
|
||||
{% else %}
|
||||
<img src="https://img.youtube.com/vi/{{page.extra.cover_video.youtube}}/mqdefault.jpg" alt="{{page.title}}"
|
||||
style="width:100%;" loading="lazy">
|
||||
{% endif %}
|
||||
<div style="display:flex;justify-content:space-between;">
|
||||
<span><strong>{{page.title}}</strong></span>
|
||||
<span class="gray">{{page.date}}</span>
|
||||
</div>
|
||||
</a>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
{% endblock content %}
|
Loading…
x
Reference in New Issue
Block a user