-
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 branch 'main' into minikin-patch-1
- Loading branch information
Showing
15 changed files
with
572 additions
and
308 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<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"> |
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,3 +1,5 @@ | ||
<footer> | ||
<p>Catalyst Voice © 2025</p> | ||
<footer class="footer"> | ||
<div class="footer-content"> | ||
<p class="copyright">© 2024 Project Catalyst. All rights reserved.</p> | ||
</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,8 @@ | ||
<!-- Main header --> | ||
<nav class="top-nav" id="mainNav"> | ||
<div class="nav-content"> | ||
<div class="logo"> | ||
<img src="/images/branding/logo.png" alt="Project Catalyst Logo" class="logo-image"> | ||
</div> | ||
</div> | ||
</nav> |
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 %} | ||
|
||
{% if header %} | ||
<header style="background-image: url('{{ header }}'); background-repeat: none; background-size: cover;"></header> | ||
{% endif %} | ||
{# <h1 class="post-title">{{ title }}</h1> #} | ||
|
||
<main> | ||
{{ content }} | ||
<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 %} #} | ||
{# | ||
<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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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,21 @@ | ||
@use 'theme' as *; | ||
@use "sass:map"; | ||
|
||
.footer { | ||
width: 100%; | ||
padding: 1rem 0; | ||
border-top: 1px solid #EAECF0; | ||
margin-top: auto; | ||
color:white | ||
|
||
} | ||
|
||
.footer-content { | ||
margin: 0 auto; | ||
padding: 0 2rem; | ||
} | ||
|
||
.copyright { | ||
@include typography("body"); | ||
color: get-color("text-light"); | ||
} |
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,33 @@ | ||
@import 'theme'; | ||
|
||
// Top Navigation | ||
.top-nav { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
z-index: 100; | ||
background: rgba(white, 0.9); | ||
backdrop-filter: blur(8px); | ||
padding: map-get($spacing, sm) 0; | ||
} | ||
|
||
.nav-content { | ||
align-content: start; | ||
width: 100%; | ||
margin: 0 auto; | ||
padding: 0 map-get($spacing, lg); | ||
display: flex; | ||
justify-content: start; | ||
align-items: left; | ||
} | ||
|
||
.logo { | ||
display: flex; | ||
align-items: left; | ||
|
||
img { | ||
height: 40px; | ||
width: auto; | ||
} | ||
} |
Oops, something went wrong.