mirror of
https://github.com/aljazceru/Journal-ghost.git
synced 2025-12-28 10:34:23 +01:00
Journal theme
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -16,151 +16,235 @@
|
||||
--content-letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
.gh-head {
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
|
||||
.gh-head-brand-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gh-head-logo {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.gh-head-description {
|
||||
position: relative;
|
||||
padding-left: 2.4rem;
|
||||
margin-left: 2.4rem;
|
||||
color: var(--color-secondary-text);
|
||||
}
|
||||
|
||||
.gh-head-description::before {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
width: 1px;
|
||||
height: 40px;
|
||||
margin-top: -20px;
|
||||
content: "";
|
||||
background-color: var(--color-light-gray);
|
||||
}
|
||||
|
||||
.gh-head-menu,
|
||||
.gh-head-actions {
|
||||
font-size: 1.3rem;
|
||||
font-weight: 700;
|
||||
font-size: 1.4rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
|
||||
.gh-section + .gh-section {
|
||||
.gh-latest {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 3fr;
|
||||
column-gap: 2.4rem;
|
||||
margin-top: 6.4rem;
|
||||
}
|
||||
|
||||
.gh-section-title {
|
||||
position: relative;
|
||||
margin-bottom: 6.4rem;
|
||||
font-size: 1.4rem;
|
||||
color: var(--ghost-accent-color);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.gh-section-title span {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.gh-section-title::after,
|
||||
.gh-section-title span::after {
|
||||
position: absolute;
|
||||
bottom: -12px;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
content: "";
|
||||
background-color: var(--color-light-gray);
|
||||
}
|
||||
|
||||
.gh-section-title span::after {
|
||||
z-index: 10;
|
||||
height: 4px;
|
||||
margin-bottom: 1px;
|
||||
background-color: var(--ghost-accent-color);
|
||||
}
|
||||
|
||||
.gh-feed .gh-card + .gh-card {
|
||||
padding-top: 4.8rem;
|
||||
margin-top: 4.8rem;
|
||||
border-top: 1px solid var(--color-darker-gray);
|
||||
}
|
||||
|
||||
.gh-card-link {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.gh-card-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 1.2rem;
|
||||
}
|
||||
|
||||
.gh-card-title {
|
||||
font-size: 3.2rem;
|
||||
font-weight: 800;
|
||||
transition: color 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.gh-card-link:hover .gh-card-title {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.gh-card-excerpt {
|
||||
font-size: 1.7rem;
|
||||
line-height: 1.5;
|
||||
color: var(--color-secondary-text);
|
||||
}
|
||||
|
||||
.gh-card-footer {
|
||||
margin-top: 2.4rem;
|
||||
line-height: 1;
|
||||
color: var(--color-secondary-text);
|
||||
}
|
||||
|
||||
.gh-card-date {
|
||||
font-size: 1.2rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
.gh-latest .gh-card-meta {
|
||||
flex-direction: column;
|
||||
font-size: 1.5rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.gh-featured .gh-card {
|
||||
margin: 0 -3.2rem;
|
||||
background: linear-gradient(315deg, #efefef, #fafafa);
|
||||
border-radius: 8px;
|
||||
.gh-latest .gh-card-date {
|
||||
margin-bottom: 1.6rem;
|
||||
}
|
||||
|
||||
.gh-featured .gh-card + .gh-card {
|
||||
margin-top: 2.4rem;
|
||||
.gh-latest .gh-card-duration::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.gh-featured .gh-card-link {
|
||||
padding: 3.6rem 3.2rem;
|
||||
.gh-latest .gh-card-image-link {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 30%;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
.gh-latest .gh-card-image {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.gh-latest .gh-card-title {
|
||||
font-size: 3.6rem;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.gh-latest .gh-card-excerpt {
|
||||
margin-top: 1.6rem;
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.gh-latest .gh-card-footer {
|
||||
margin-top: 3.2rem;
|
||||
}
|
||||
|
||||
.gh-latest .gh-card-more {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
.gh-latest .gh-card-more svg {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-left: 0.4rem;
|
||||
}
|
||||
|
||||
.gh-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: 4fr 2fr;
|
||||
column-gap: 2.4rem;
|
||||
margin-top: 12vmin;
|
||||
}
|
||||
|
||||
.gh-wrapper > .gh-section {
|
||||
max-width: 720px;
|
||||
}
|
||||
|
||||
.gh-section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 4.8rem;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.gh-section-title::after {
|
||||
flex-grow: 1;
|
||||
height: 1px;
|
||||
margin-left: 1.6rem;
|
||||
content: "";
|
||||
background-color: var(--color-darker-gray);
|
||||
}
|
||||
|
||||
.gh-card + .gh-card {
|
||||
margin-top: 4.8rem;
|
||||
}
|
||||
|
||||
.gh-card-title {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.gh-card-excerpt {
|
||||
margin-top: 0.8rem;
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.gh-card-meta {
|
||||
display: flex;
|
||||
font-size: 1.3rem;
|
||||
font-weight: 600;
|
||||
line-height: 1;
|
||||
color: var(--color-secondary-text);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
.gh-feed .gh-card-meta {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.gh-card-date {
|
||||
color: var(--ghost-accent-color);
|
||||
}
|
||||
|
||||
.gh-card-duration {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gh-card-duration::before {
|
||||
padding: 0 0.8rem;
|
||||
font-size: 1rem;
|
||||
line-height: 0;
|
||||
content: "•";
|
||||
}
|
||||
|
||||
.gh-sidebar {
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
|
||||
.gh-sidebar .gh-section + .gh-section {
|
||||
margin-top: 5.6rem;
|
||||
}
|
||||
|
||||
.gh-about {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.gh-about-icon {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin-right: 2rem;
|
||||
}
|
||||
|
||||
.gh-about-title {
|
||||
font-size: 2.2rem;
|
||||
}
|
||||
|
||||
.gh-about-description {
|
||||
margin-top: 0.4rem;
|
||||
}
|
||||
|
||||
.gh-signup {
|
||||
margin-top: 3.2rem;
|
||||
}
|
||||
|
||||
.gh-signup .gh-subscribe-input {
|
||||
margin-top: 1.6rem;
|
||||
}
|
||||
|
||||
.gh-featured .gh-card-title {
|
||||
font-size: 2.2rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.gh-featured .gh-card-excerpt {
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
.gh-topic-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.gh-topic-item + .gh-topic-item {
|
||||
margin-top: 1.6rem;
|
||||
}
|
||||
|
||||
.gh-topic-name {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.gh-topic-count {
|
||||
padding: 0.4rem 0.8rem;
|
||||
font-size: 1.4rem;
|
||||
line-height: 1;
|
||||
border: 1px solid var(--color-light-gray);
|
||||
border-radius: 32px;
|
||||
}
|
||||
|
||||
.gh-subscribe {
|
||||
padding: max(6.4vmin, 4rem) 2.4rem max(7.2vmin, 4rem);
|
||||
padding: 8vmin 0;
|
||||
margin-top: 12vmin;
|
||||
margin-bottom: 4vmin;
|
||||
background-color: var(--color-lighter-gray);
|
||||
}
|
||||
|
||||
.gh-subscribe-inner {
|
||||
max-width: 520px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
background: linear-gradient(315deg, #efefef, #fafafa);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.gh-subscribe-title {
|
||||
font-size: var(--h1-size);
|
||||
font-size: 3.2rem;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
@@ -168,127 +252,48 @@
|
||||
margin-top: 1.6rem;
|
||||
font-size: 1.8rem;
|
||||
line-height: 1.4;
|
||||
color: var(--color-secondary-text);
|
||||
}
|
||||
|
||||
.gh-subscribe-form-input {
|
||||
.gh-subscribe-input {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
max-width: 560px;
|
||||
height: 56px;
|
||||
padding: 0 8px 0 2.4rem;
|
||||
padding: 0 1.6rem;
|
||||
margin: 4.8rem auto 0;
|
||||
font-size: 1.8rem;
|
||||
font-size: 1.7rem;
|
||||
color: var(--color-secondary-text);
|
||||
background-color: var(--color-white);
|
||||
border-radius: 28px;
|
||||
transition: box-shadow 0.2s ease-in-out;
|
||||
border: 1px solid var(--color-light-gray);
|
||||
border-radius: 6px;
|
||||
transition: border-color 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.gh-subscribe-form-input:hover {
|
||||
box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
|
||||
.gh-subscribe-input:hover {
|
||||
border-color: var(--ghost-accent-color);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.gh-subscribe-input-text {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gh-subscribe-input svg {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
margin-right: 0.8rem;
|
||||
}
|
||||
|
||||
.gh-subscribe-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: calc(100% - 16px);
|
||||
padding: 0 1.2rem 0 1.6rem;
|
||||
font-size: 1.3rem;
|
||||
font-weight: 800;
|
||||
color: var(--color-white);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.01em;
|
||||
background-color: var(--ghost-accent-color);
|
||||
border-radius: 28px;
|
||||
}
|
||||
|
||||
.gh-subscribe .gh-subscribe-btn svg {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.post-template .gh-head,
|
||||
.post-template .gh-article-header,
|
||||
.page-template .gh-head,
|
||||
.page-template .gh-article-header {
|
||||
background-color: var(--color-lighter-gray);
|
||||
}
|
||||
|
||||
.gh-article {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.gh-article-header {
|
||||
padding: 8vmin 0 calc(8vmin + 4rem);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.no-image .gh-article-header,
|
||||
.home-template .gh-article-header {
|
||||
padding-bottom: max(4.8vmin, 3rem);
|
||||
}
|
||||
|
||||
.gh-article-header-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: 3fr 2fr;
|
||||
grid-column: wide-start/wide-end;
|
||||
column-gap: 4.8rem;
|
||||
}
|
||||
|
||||
.gh-article-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 1.6rem;
|
||||
font-size: 1.3rem;
|
||||
font-weight: 600;
|
||||
line-height: 1;
|
||||
color: var(--color-secondary-text);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.gh-article-label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 1.6rem;
|
||||
position: relative;
|
||||
top: 1px;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
color: var(--ghost-accent-color);
|
||||
}
|
||||
|
||||
.gh-article-label-indicator {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
margin-top: -1px;
|
||||
margin-right: 0.6rem;
|
||||
background-color: var(--ghost-accent-color);
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 0 0 var(--ghost-accent-color);
|
||||
transform: scale(1);
|
||||
-webkit-animation: pulse 2s infinite;
|
||||
animation: pulse 2s infinite;
|
||||
}
|
||||
|
||||
.gh-article-title {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.gh-article-image {
|
||||
grid-column: auto;
|
||||
margin-top: -8vmin;
|
||||
}
|
||||
|
||||
.home-template .gh-article-image {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.gh-article-image img {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.gh-article-footer {
|
||||
margin-top: max(6.4vmin, 4.8rem);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.gh-article-navigation {
|
||||
@@ -377,80 +382,7 @@
|
||||
margin-left: 1.2rem;
|
||||
}
|
||||
|
||||
.u-hover,
|
||||
.u-hover-inner {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.u-hover span {
|
||||
line-height: 0;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.u-hover span:nth-of-type(2) {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
opacity: 0;
|
||||
transform: translateX(-5px);
|
||||
}
|
||||
|
||||
.u-hover.reverse span:nth-of-type(2) {
|
||||
right: auto;
|
||||
left: 0;
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.u-hover:hover span:nth-of-type(1) {
|
||||
opacity: 0;
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.u-hover.reverse:hover span:nth-of-type(1) {
|
||||
transform: translateX(-5px);
|
||||
}
|
||||
|
||||
.u-hover:hover span:nth-of-type(2) {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.u-hover svg {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.gh-head-description {
|
||||
padding-left: 1.6rem;
|
||||
margin-left: 1.6rem;
|
||||
}
|
||||
|
||||
.gh-head-description::before {
|
||||
height: 32px;
|
||||
margin-top: -16px;
|
||||
}
|
||||
|
||||
.gh-section-featured {
|
||||
grid-column: full-start / full-end;
|
||||
}
|
||||
|
||||
.gh-section-featured .gh-section-title {
|
||||
margin-right: 4vmin;
|
||||
margin-left: 4vmin;
|
||||
}
|
||||
|
||||
.gh-featured .gh-card {
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.gh-featured .gh-card-link {
|
||||
padding-right: 4vmin;
|
||||
padding-left: 4vmin;
|
||||
}
|
||||
|
||||
.gh-article-navigation-all span {
|
||||
display: none;
|
||||
}
|
||||
@@ -470,16 +402,34 @@
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
box-shadow: 0 0 0 0 rgba(255, 26, 117, 0.7);
|
||||
@media (min-width: 992px) {
|
||||
.gh-head-inner {
|
||||
row-gap: 0 !important;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
70% {
|
||||
box-shadow: 0 0 0 4px rgba(255, 26, 117, 0);
|
||||
.gh-head-brand {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
100% {
|
||||
box-shadow: 0 0 0 0 rgba(255, 26, 117, 0);
|
||||
.gh-head-menu {
|
||||
height: 56px;
|
||||
}
|
||||
|
||||
.gh-head-menu::before,
|
||||
.gh-head-menu::after {
|
||||
position: absolute;
|
||||
top: 80px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
content: "";
|
||||
background-color: var(--color-light-gray);
|
||||
}
|
||||
|
||||
.gh-head-menu::after {
|
||||
top: 136px;
|
||||
}
|
||||
}
|
||||
|
||||
28
default.hbs
28
default.hbs
@@ -14,7 +14,7 @@
|
||||
<body class="{{body_class}} is-head-b--a_n">
|
||||
<div class="gh-site">
|
||||
<header id="gh-head" class="gh-head gh-outer">
|
||||
<div class="gh-head-inner">
|
||||
<div class="gh-head-inner gh-inner">
|
||||
<div class="gh-head-brand">
|
||||
<div class="gh-head-brand-wrapper">
|
||||
<a class="gh-head-logo" href="{{@site.url}}">
|
||||
@@ -24,8 +24,6 @@
|
||||
{{@site.title}}
|
||||
{{/if}}
|
||||
</a>
|
||||
|
||||
<span class="gh-head-description">{{@site.description}}</span>
|
||||
</div>
|
||||
<button class="gh-burger"></button>
|
||||
</div>
|
||||
@@ -36,10 +34,9 @@
|
||||
|
||||
<div class="gh-head-actions">
|
||||
{{#unless @member}}
|
||||
<a class="gh-head-btn u-hover" href="#/portal/signup">
|
||||
<a class="gh-head-btn" href="#/portal/signup">
|
||||
{{> icons/email}}
|
||||
Subscribe
|
||||
<span>{{> icons/chevron-right}}</span>
|
||||
<span>{{> icons/chevron-right}}</span>
|
||||
</a>
|
||||
{{else}}
|
||||
<a class="gh-head-btn" href="#/portal/account">Account</a>
|
||||
@@ -50,21 +47,18 @@
|
||||
|
||||
{{{body}}}
|
||||
|
||||
<div class="gh-subscribe-wrapper gh-canvas">
|
||||
<section class="gh-subscribe">
|
||||
<div class="gh-subscribe">
|
||||
<section class="gh-subscribe-inner">
|
||||
<h3 class="gh-subscribe-title">Subscribe to {{@site.title}}</h3>
|
||||
|
||||
<div class="gh-subscribe-description">Sign up now to get access to the library of members-only issues.</div>
|
||||
<div class="gh-subscribe-description">Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.</div>
|
||||
|
||||
<a class="gh-subscribe-form-input u-hover" href="#/portal/signup">
|
||||
Jamie Larson
|
||||
<div class="gh-subscribe-btn">
|
||||
<div class="u-hover-inner">
|
||||
Subscribe
|
||||
<span>{{> icons/chevron-right}}</span>
|
||||
<span>{{> icons/chevron-right}}</span>
|
||||
</div>
|
||||
<a class="gh-subscribe-input u-hover" href="#/portal/signup">
|
||||
<div class="gh-subscribe-input-text">
|
||||
{{> icons/email}}
|
||||
jamie@example.com
|
||||
</div>
|
||||
<div class="gh-subscribe-btn">Subscribe</div>
|
||||
</a>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
142
index.hbs
142
index.hbs
@@ -1,45 +1,121 @@
|
||||
{{!< default}}
|
||||
|
||||
<main class="gh-main gh-canvas">
|
||||
<section class="gh-pagehead">
|
||||
<header class="gh-pagehead-content">
|
||||
<h1 class="gh-pagehead-title">Archive</h1>
|
||||
<main class="gh-main gh-outer">
|
||||
<div class="gh-inner">
|
||||
{{#get "posts" limit="1"}}
|
||||
{{#foreach posts}}
|
||||
<article class="gh-latest gh-card {{post_class}}">
|
||||
<aside class="gh-card-meta">
|
||||
<span class="gh-card-date">Latest — <time datetime="{{date format="YYYY-MM-DD"}}">{{date}}</time></span>
|
||||
<span class="gh-card-duration">{{reading_time}}</span>
|
||||
</aside>
|
||||
|
||||
<div class="gh-pagehead-description">
|
||||
{{#if description}}
|
||||
{{description}}
|
||||
{{else}}
|
||||
A collection of {{plural pagination.total empty='zero issues' singular='% issue' plural='% issues'}}
|
||||
{{/if}}
|
||||
</div>
|
||||
</header>
|
||||
</section>
|
||||
<div class="gh-card-wrapper">
|
||||
<header class="gh-card-header">
|
||||
{{#if feature_image}}
|
||||
<a class="gh-card-image-link" href="{{url}}">
|
||||
<img class="gh-card-image"
|
||||
srcset="{{img_url feature_image size="s"}} 300w,
|
||||
{{img_url feature_image size="m"}} 720w,
|
||||
{{img_url feature_image size="l"}} 960w,
|
||||
{{img_url feature_image size="xl"}} 1200w,
|
||||
{{img_url feature_image size="xxl"}} 2000w"
|
||||
sizes="calc((1200px - 2.4rem) / 4 * 3)"
|
||||
src="{{img_url feature_image size="m"}}"
|
||||
alt="{{title}}"
|
||||
loading="lazy"
|
||||
>
|
||||
</a>
|
||||
{{/if}}
|
||||
|
||||
{{#get "posts" filter="featured:true" limit="all" as |featured|}}
|
||||
{{#if featured}}
|
||||
<section class="gh-section gh-section-featured">
|
||||
<h3 class="gh-section-title"><span>Featured</span></h3>
|
||||
<h2 class="gh-card-title">{{title}}</h2>
|
||||
</header>
|
||||
|
||||
<div class="gh-featured">
|
||||
{{#foreach featured}}
|
||||
{{> loop}}
|
||||
<p class="gh-card-excerpt">{{excerpt}}</p>
|
||||
|
||||
<footer class="gh-card-footer">
|
||||
<a class="gh-card-more" href="{{url}}">Read more {{> icons/arrow-right}}</a>
|
||||
</footer>
|
||||
</div>
|
||||
</article>
|
||||
{{/foreach}}
|
||||
{{/get}}
|
||||
|
||||
<div class="gh-wrapper">
|
||||
<section class="gh-section">
|
||||
<h2 class="gh-section-title">More issues</h2>
|
||||
|
||||
<div class="gh-feed">
|
||||
{{#foreach posts}}
|
||||
{{^has index="0"}}
|
||||
{{> loop}}
|
||||
{{/has}}
|
||||
{{/foreach}}
|
||||
</div>
|
||||
</section>
|
||||
{{/if}}
|
||||
{{/get}}
|
||||
|
||||
<section class="gh-section">
|
||||
<h3 class="gh-section-title"><span>Latest</span></h3>
|
||||
<aside class="gh-sidebar">
|
||||
<section class="gh-section">
|
||||
<h2 class="gh-section-title">About</h2>
|
||||
|
||||
<div class="gh-feed">
|
||||
{{#get "posts" limit="all"}}
|
||||
{{#foreach posts}}
|
||||
{{> loop}}
|
||||
{{/foreach}}
|
||||
{{/get}}
|
||||
<div class="gh-about">
|
||||
{{#if @site.icon}}
|
||||
<img class="gh-about-icon" src="{{@site.icon}}" alt="{{@site.title}}">
|
||||
{{/if}}
|
||||
|
||||
<section class="gh-about-wrapper">
|
||||
<h3 class="gh-about-title">{{@site.title}}</h3>
|
||||
|
||||
{{#if @site.description}}
|
||||
<p class="gh-about-description">{{@site.description}}</p>
|
||||
{{/if}}
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="gh-signup">
|
||||
<p class="gh-signup-description">Sign up now to get access to the library of members-only issues.</p>
|
||||
|
||||
<a class="gh-subscribe-input u-hover" href="#/portal/signup">
|
||||
<div class="gh-subscribe-input-text">
|
||||
{{> icons/email}}
|
||||
jamie@example.com
|
||||
</div>
|
||||
<div class="gh-subscribe-btn">Subscribe</div>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{{#get "posts" filter="featured:true" limit="all" as |featured|}}
|
||||
{{#if featured}}
|
||||
<section class="gh-section">
|
||||
<h3 class="gh-section-title">Featured</h3>
|
||||
|
||||
<div class="gh-featured gh-feed">
|
||||
{{#foreach featured}}
|
||||
{{> loop}}
|
||||
{{/foreach}}
|
||||
</div>
|
||||
</section>
|
||||
{{/if}}
|
||||
{{/get}}
|
||||
|
||||
{{#get "tags" include="count.posts" limit="all" as |topic|}}
|
||||
<section class="gh-section">
|
||||
<h3 class="gh-section-title">Topics</h3>
|
||||
|
||||
<div class="gh-topic">
|
||||
{{#foreach topic}}
|
||||
<a class="gh-topic-item" href="{{url}}">
|
||||
<h3 class="gh-topic-name">{{name}}</h3>
|
||||
<span class="gh-topic-count">
|
||||
{{plural count.posts empty="0 issues" singular="% issue" plural="% issues"}}
|
||||
</span>
|
||||
</a>
|
||||
{{/foreach}}
|
||||
</div>
|
||||
</section>
|
||||
{{/get}}
|
||||
</aside>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{{!-- <button class="gh-loadmore">Load more</button> --}}
|
||||
</div>
|
||||
</main>
|
||||
@@ -18,7 +18,7 @@
|
||||
"ghost-theme"
|
||||
],
|
||||
"config": {
|
||||
"posts_per_page": 1,
|
||||
"posts_per_page": 10,
|
||||
"image_sizes": {
|
||||
"xs": {
|
||||
"width": 150
|
||||
|
||||
4
partials/icons/arrow-right.hbs
Normal file
4
partials/icons/arrow-right.hbs
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<line x1="5" y1="12" x2="19" y2="12"></line>
|
||||
<polyline points="12 5 19 12 12 19"></polyline>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 289 B |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor">
|
||||
<path d="M20.547 22.107L14.44 16l6.107-6.12L18.667 8l-8 8 8 8 1.88-1.893z"></path>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 175 B |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor">
|
||||
<path d="M11.453 22.107L17.56 16l-6.107-6.12L13.333 8l8 8-8 8-1.88-1.893z"></path>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 174 B |
4
partials/icons/email.hbs
Normal file
4
partials/icons/email.hbs
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" stroke="currentColor" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.33332 3.33334H16.6667C17.5833 3.33334 18.3333 4.08334 18.3333 5.00001V15C18.3333 15.9167 17.5833 16.6667 16.6667 16.6667H3.33332C2.41666 16.6667 1.66666 15.9167 1.66666 15V5.00001C1.66666 4.08334 2.41666 3.33334 3.33332 3.33334Z" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M18.3333 5L9.99999 10.8333L1.66666 5" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 557 B |
@@ -6,8 +6,9 @@
|
||||
|
||||
<div class="gh-card-excerpt">{{excerpt}}</div>
|
||||
|
||||
<footer class="gh-card-footer">
|
||||
<footer class="gh-card-meta">
|
||||
<time class="gh-card-date" datetime="{{date format="YYYY-MM-DD"}}">{{date}}</time>
|
||||
<span class="gh-card-duration">{{reading_time}}</span>
|
||||
</footer>
|
||||
</a>
|
||||
</article>
|
||||
2
tag.hbs
2
tag.hbs
@@ -10,7 +10,7 @@
|
||||
{{#if description}}
|
||||
{{description}}
|
||||
{{else}}
|
||||
A collection of {{plural ../pagination.total empty='zero issues' singular='% issue' plural='% issues'}}
|
||||
A collection of {{plural ../pagination.total empty="0 issues" singular="% issue" plural="% issues"}}
|
||||
{{/if}}
|
||||
</div>
|
||||
</header>
|
||||
|
||||
Reference in New Issue
Block a user