-
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.
- Loading branch information
Showing
5 changed files
with
393 additions
and
292 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,60 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<html lang="en" data-bs-theme="light"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>{{ title }}</title> | ||
<title>{{ title }}</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content="Latest updates and news from Catalyst Voices"> | ||
|
||
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon/favicon-16x16.png"> | ||
<link rel="manifest" href="/images/favicon/site.webmanifest"> | ||
<link rel="mask-icon" href="/images/favicon/safari-pinned-tab.svg" color="#5bbad5"> | ||
<link rel="shortcut icon" href="/images/favicon/favicon.ico"> | ||
<meta name="msapplication-TileColor" content="#da532c"> | ||
<meta name="msapplication-config" content="/images/favicon/browserconfig.xml"> | ||
<meta name="theme-color" content="#ffffff"> | ||
|
||
<link href="/styles/styles.css" rel="stylesheet"> | ||
<link href="/styles/post.css" rel="stylesheet"> | ||
{{ components.favicon() }} | ||
|
||
<link rel="stylesheet" href="/styles/theme.css"> | ||
<link rel="stylesheet" href="/styles/header.css"> | ||
<link rel="stylesheet" href="/styles/post.css"> | ||
<link rel="stylesheet" href="/styles/footer.css"> | ||
</head> | ||
|
||
<body> | ||
<div id="NavBar"> | ||
<a href="/" class="title">Catalyst Voices Updates</a> | ||
</div> | ||
{{ components.header() }} | ||
|
||
<main class="post-container"> | ||
<article> | ||
<header class="post-header"> | ||
{% if publishDate %} | ||
<time class="publish-date" datetime="{{ publishDate }}"> | ||
PUBLISHED: {{ publishDate }} | ||
</time> | ||
{% endif %} | ||
|
||
<h1 class="post-title">{{ title }}</h1> | ||
|
||
{% if header %} | ||
<header style="background-image: url('{{ header }}'); background-repeat: none; background-size: cover;"></header> | ||
{% endif %} | ||
<div class="post-meta"> | ||
{% if author %} | ||
<div class="author"> | ||
<img src="/images/authors/{{ author | lower | replace(" ", " -") }}.jpg" alt="{{ author }}"> | ||
<div class="author-info"> | ||
<div class="name">{{ author }}</div> | ||
<div class="role">{{ role | default("Contributor") }}</div> | ||
</div> | ||
</div> | ||
{% endif %} | ||
|
||
<main> | ||
{{ content }} | ||
<div class="share"> | ||
<a href="https://twitter.com/share?url={{ url }}" target="_blank">Twitter</a> | ||
<a href="https://www.facebook.com/sharer/sharer.php?u={{ url }}" target="_blank">Facebook</a> | ||
<a href="https://www.linkedin.com/shareArticle?url={{ url }}" target="_blank">LinkedIn</a> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<div class="post-content"> | ||
{{ content }} | ||
</div> | ||
</article> | ||
</main> | ||
|
||
{{ components.footer() }} | ||
{{ components.footer() }} | ||
</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
Oops, something went wrong.