Fix style comments
This commit is contained in:
parent
1b11f8b6d6
commit
794752fa77
|
@ -48,6 +48,10 @@
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#isso-root {
|
||||||
|
margin-top: 8rem;
|
||||||
|
}
|
||||||
|
|
||||||
#isso-root .spacer,
|
#isso-root .spacer,
|
||||||
.isso-comment-header *,
|
.isso-comment-header *,
|
||||||
.isso-comment-footer *,
|
.isso-comment-footer *,
|
||||||
|
@ -117,4 +121,5 @@
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 20px 1fr;
|
grid-template-columns: 20px 1fr;
|
||||||
grid-column-gap: 10px;
|
grid-column-gap: 10px;
|
||||||
|
margin: 1rem 0;
|
||||||
}
|
}
|
138
post.hbs
138
post.hbs
|
@ -1,16 +1,36 @@
|
||||||
{{!< default}}
|
{{!<
|
||||||
|
default}}
|
||||||
{{!-- The tag above means: insert everything in this file
|
{{!--
|
||||||
into the {body} of the default.hbs template --}}
|
The
|
||||||
|
tag
|
||||||
<header class="site-header">
|
above
|
||||||
|
means:
|
||||||
|
insert
|
||||||
|
everything
|
||||||
|
in
|
||||||
|
this
|
||||||
|
file
|
||||||
|
into
|
||||||
|
the
|
||||||
|
{body}
|
||||||
|
of
|
||||||
|
the
|
||||||
|
default.hbs
|
||||||
|
template
|
||||||
|
--}}
|
||||||
|
<header
|
||||||
|
class="site-header"
|
||||||
|
>
|
||||||
{{> site-header}}
|
{{> site-header}}
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
{{!-- Everything inside the #post tags pulls data from the post --}}
|
{{!-- Everything inside the #post tags pulls data from the post --}}
|
||||||
{{#post}}
|
{{#post}}
|
||||||
|
|
||||||
<main id="site-main" class="site-main outer">
|
<main
|
||||||
|
id="site-main"
|
||||||
|
class="site-main outer"
|
||||||
|
>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
|
||||||
<article class="post-full {{post_class}} {{#unless feature_image}}no-image{{/unless}}">
|
<article class="post-full {{post_class}} {{#unless feature_image}}no-image{{/unless}}">
|
||||||
|
@ -21,7 +41,11 @@ into the {body} of the default.hbs template --}}
|
||||||
<section class="post-full-tags">
|
<section class="post-full-tags">
|
||||||
{{#if tags}}
|
{{#if tags}}
|
||||||
{{#foreach tags}}
|
{{#foreach tags}}
|
||||||
<a href="{{url}}" title="{{name}}" class="tag {{slug}}">{{name}}</a>
|
<a
|
||||||
|
href="{{url}}"
|
||||||
|
title="{{name}}"
|
||||||
|
class="tag {{slug}}"
|
||||||
|
>{{name}}</a>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</section>
|
</section>
|
||||||
|
@ -43,11 +67,19 @@ into the {body} of the default.hbs template --}}
|
||||||
|
|
||||||
<div class="author-card">
|
<div class="author-card">
|
||||||
{{#if profile_image}}
|
{{#if profile_image}}
|
||||||
<img class="author-profile-image" src="{{img_url profile_image size="xs"}}" alt="{{name}}" />
|
<img
|
||||||
|
class="author-profile-image"
|
||||||
|
src="{{img_url profile_image size="
|
||||||
|
xs"}}"
|
||||||
|
alt="{{name}}"
|
||||||
|
/>
|
||||||
{{else}}
|
{{else}}
|
||||||
<div class="author-profile-image">{{> "icons/avatar"}}</div>
|
<div class="author-profile-image">{{> "icons/avatar"}}</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<div class="author-info" aria-hidden="true">
|
<div
|
||||||
|
class="author-info"
|
||||||
|
aria-hidden="true"
|
||||||
|
>
|
||||||
{{#if bio}}
|
{{#if bio}}
|
||||||
<div class="bio">
|
<div class="bio">
|
||||||
<h2>{{name}}</h2>
|
<h2>{{name}}</h2>
|
||||||
|
@ -62,11 +94,22 @@ into the {body} of the default.hbs template --}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{#if profile_image}}
|
{{#if profile_image}}
|
||||||
<a href="{{url}}" class="author-avatar">
|
<a
|
||||||
<img class="author-profile-image" src="{{img_url profile_image size="xs"}}" alt="{{name}}" />
|
href="{{url}}"
|
||||||
|
class="author-avatar"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
class="author-profile-image"
|
||||||
|
src="{{img_url profile_image size="
|
||||||
|
xs"}}"
|
||||||
|
alt="{{name}}"
|
||||||
|
/>
|
||||||
</a>
|
</a>
|
||||||
{{else}}
|
{{else}}
|
||||||
<a href="{{url}}" class="author-avatar author-profile-image">{{> "icons/avatar"}}</a>
|
<a
|
||||||
|
href="{{url}}"
|
||||||
|
class="author-avatar author-profile-image"
|
||||||
|
>{{> "icons/avatar"}}</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
@ -76,8 +119,13 @@ into the {body} of the default.hbs template --}}
|
||||||
<section class="post-full-byline-meta">
|
<section class="post-full-byline-meta">
|
||||||
<h4 class="author-name">{{authors}}</h4>
|
<h4 class="author-name">{{authors}}</h4>
|
||||||
<div class="byline-meta-content">
|
<div class="byline-meta-content">
|
||||||
<time class="byline-meta-date" datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMM YYYY"}}</time>
|
<time
|
||||||
<span class="byline-reading-time"><span class="bull">•</span> {{reading_time}}</span>
|
class="byline-meta-date"
|
||||||
|
datetime="{{date format="
|
||||||
|
YYYY-MM-DD"}}"
|
||||||
|
>{{date format="D MMM YYYY"}}</time>
|
||||||
|
<span class="byline-reading-time"><span class="bull">•</span>
|
||||||
|
{{reading_time}}</span>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -91,16 +139,32 @@ into the {body} of the default.hbs template --}}
|
||||||
{{#if feature_image}}
|
{{#if feature_image}}
|
||||||
<figure class="post-full-image">
|
<figure class="post-full-image">
|
||||||
{{!-- This is a responsive image, it loads different sizes depending on device
|
{{!-- This is a responsive image, it loads different sizes depending on device
|
||||||
https://medium.freecodecamp.org/a-guide-to-responsive-images-with-ready-to-use-templates-c400bd65c433 --}}
|
https://medium.freecodecamp.org/a-guide-to-responsive-images-with-ready-to-use-templates-c400bd65c433
|
||||||
|
--}}
|
||||||
<img
|
<img
|
||||||
srcset="{{img_url feature_image size="s"}} 300w,
|
srcset="{{img_url feature_image size="
|
||||||
{{img_url feature_image size="m"}} 600w,
|
s"}}
|
||||||
{{img_url feature_image size="l"}} 1000w,
|
300w,
|
||||||
{{img_url feature_image size="xl"}} 2000w"
|
{{img_url
|
||||||
|
feature_image
|
||||||
|
size="m"
|
||||||
|
}}
|
||||||
|
600w,
|
||||||
|
{{img_url
|
||||||
|
feature_image
|
||||||
|
size="l"
|
||||||
|
}}
|
||||||
|
1000w,
|
||||||
|
{{img_url
|
||||||
|
feature_image
|
||||||
|
size="xl"
|
||||||
|
}}
|
||||||
|
2000w"
|
||||||
sizes="(max-width: 800px) 400px,
|
sizes="(max-width: 800px) 400px,
|
||||||
(max-width: 1170px) 1170px,
|
(max-width: 1170px) 1170px,
|
||||||
2000px"
|
2000px"
|
||||||
src="{{img_url feature_image size="xl"}}"
|
src="{{img_url feature_image size="
|
||||||
|
xl"}}"
|
||||||
alt="{{title}}"
|
alt="{{title}}"
|
||||||
/>
|
/>
|
||||||
</figure>
|
</figure>
|
||||||
|
@ -124,7 +188,8 @@ into the {body} of the default.hbs template --}}
|
||||||
--}}
|
--}}
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
<script data-isso="https://www.internet-czas-dzialac.pl/isso"
|
<script
|
||||||
|
data-isso="https://www.internet-czas-dzialac.pl/isso"
|
||||||
data-isso-lang="pl"
|
data-isso-lang="pl"
|
||||||
data-isso-default-lang="pl"
|
data-isso-default-lang="pl"
|
||||||
data-isso-feed="false"
|
data-isso-feed="false"
|
||||||
|
@ -132,12 +197,15 @@ into the {body} of the default.hbs template --}}
|
||||||
data-isso-max-comments-nested="inf"
|
data-isso-max-comments-nested="inf"
|
||||||
data-isso-gravatar="false"
|
data-isso-gravatar="false"
|
||||||
data-isso-avatar="true"
|
data-isso-avatar="true"
|
||||||
src="https://www.internet-czas-dzialac.pl/isso/js/embed.min.js" async></script>
|
src="https://www.internet-czas-dzialac.pl/isso/js/embed.min.js"
|
||||||
|
async
|
||||||
|
></script>
|
||||||
|
|
||||||
<section id="isso-thread"></section>
|
<section id="isso-thread"></section>
|
||||||
<script>
|
<script>
|
||||||
(async function () {
|
(async function () {
|
||||||
function addCheckbox(){const original_submit = document.querySelector(".post-action input[type='submit']");
|
function addCheckbox() {
|
||||||
|
const original_submit = document.querySelector(".post-action input[type='submit']");
|
||||||
original_submit.style.setProperty("display", "none")
|
original_submit.style.setProperty("display", "none")
|
||||||
const faux_submit = document.createElement("input")
|
const faux_submit = document.createElement("input")
|
||||||
faux_submit.value = "Wyślij"
|
faux_submit.value = "Wyślij"
|
||||||
|
@ -159,11 +227,12 @@ into the {body} of the default.hbs template --}}
|
||||||
document.querySelector("#isso-thread .auth-section").insertBefore(label, document.querySelector(".auth-section .post-action"))
|
document.querySelector("#isso-thread .auth-section").insertBefore(label, document.querySelector(".auth-section .post-action"))
|
||||||
const legal = document.createElement("p");
|
const legal = document.createElement("p");
|
||||||
legal.classList.add("legal");
|
legal.classList.add("legal");
|
||||||
legal.textContent = `Współadministratorami danych osobowych są Arkadiusz wieczorek oraz Jan Orlik. Dane osobowe podane w formularzu są przetwarzane w celu realizacji usługi publikowania komentarzy na stronie internetowej współadministratorów, jak również w celu ustalenia, dochodzenia lub obrony roszczeń. Masz w szczególności prawo dostępu do swoich danych osobowych, ich usunięcia oraz wniesienia sprzeciwu wobec przetwarzania danych. Szczegóły dotyczące przetwarzania danych osobowych i przysługujących Ci praw znajdują się w Polityce prywatności.`
|
legal.textContent = `Współadministratorami danych osobowych są Arkadiusz Wieczorek oraz Jan Orlik. Dane osobowe podane w formularzu są przetwarzane w celu realizacji usługi publikowania komentarzy na stronie internetowej współadministratorów, jak również w celu ustalenia, dochodzenia lub obrony roszczeń. Masz w szczególności prawo dostępu do swoich danych osobowych, ich usunięcia oraz wniesienia sprzeciwu wobec przetwarzania danych. Szczegóły dotyczące przetwarzania danych osobowych i przysługujących Ci praw znajdują się w Polityce prywatności.`
|
||||||
legal.style.setProperty("line-height", "0.98")
|
|
||||||
legal.style.setProperty("hyphens", "auto")
|
legal.style.setProperty("hyphens", "auto")
|
||||||
legal.style.setProperty("text-align", "justify")
|
legal.style.setProperty("text-align", "justify")
|
||||||
legal.style.setProperty("font-style", "italic")
|
legal.style.setProperty("font-style", "italic")
|
||||||
|
legal.style.setProperty("font-size", "1.333rem")
|
||||||
|
legal.style.setProperty("line-height", "150%")
|
||||||
document.querySelector("#isso-thread .auth-section").insertBefore(legal, document.querySelector(".auth-section .post-action"))
|
document.querySelector("#isso-thread .auth-section").insertBefore(legal, document.querySelector(".auth-section .post-action"))
|
||||||
faux_submit.addEventListener("click", () => {
|
faux_submit.addEventListener("click", () => {
|
||||||
if (!checkbox.checked) {
|
if (!checkbox.checked) {
|
||||||
|
@ -205,7 +274,10 @@ into the {body} of the default.hbs template --}}
|
||||||
<li>
|
<li>
|
||||||
<h4><a href="{{url}}">{{title}}</a></h4>
|
<h4><a href="{{url}}">{{title}}</a></h4>
|
||||||
<div class="read-next-card-meta">
|
<div class="read-next-card-meta">
|
||||||
<p><time datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMM YYYY"}}</time> –
|
<p><time
|
||||||
|
datetime="{{date format="
|
||||||
|
YYYY-MM-DD"}}"
|
||||||
|
>{{date format="D MMM YYYY"}}</time> –
|
||||||
{{reading_time}}</p>
|
{{reading_time}}</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
@ -213,7 +285,8 @@ into the {body} of the default.hbs template --}}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<footer class="read-next-card-footer">
|
<footer class="read-next-card-footer">
|
||||||
<a href="{{#../primary_tag}}{{url}}{{/../primary_tag}}">{{plural meta.pagination.total empty='No posts' singular='% post' plural='See all % posts'}}
|
<a href="{{#../primary_tag}}{{url}}{{/../primary_tag}}">{{plural meta.pagination.total empty='No
|
||||||
|
posts' singular='% post' plural='See all % posts'}}
|
||||||
→</a>
|
→</a>
|
||||||
</footer>
|
</footer>
|
||||||
</article>
|
</article>
|
||||||
|
@ -221,12 +294,14 @@ into the {body} of the default.hbs template --}}
|
||||||
{{/get}}
|
{{/get}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{!-- If there's a next post, display it using the same markup included from - partials/post-card.hbs --}}
|
{{!-- If there's a next post, display it using the same markup included from - partials/post-card.hbs
|
||||||
|
--}}
|
||||||
{{#next_post}}
|
{{#next_post}}
|
||||||
{{> "post-card"}}
|
{{> "post-card"}}
|
||||||
{{/next_post}}
|
{{/next_post}}
|
||||||
|
|
||||||
{{!-- If there's a previous post, display it using the same markup included from - partials/post-card.hbs --}}
|
{{!-- If there's a previous post, display it using the same markup included from -
|
||||||
|
partials/post-card.hbs --}}
|
||||||
{{#prev_post}}
|
{{#prev_post}}
|
||||||
{{> "post-card"}}
|
{{> "post-card"}}
|
||||||
{{/prev_post}}
|
{{/prev_post}}
|
||||||
|
@ -236,7 +311,8 @@ into the {body} of the default.hbs template --}}
|
||||||
|
|
||||||
{{/post}}
|
{{/post}}
|
||||||
|
|
||||||
{{!-- The #contentFor helper here will send everything inside it up to the matching #block helper found in default.hbs --}}
|
{{!-- The #contentFor helper here will send everything inside it up to the matching #block helper found in
|
||||||
|
default.hbs --}}
|
||||||
{{#contentFor "scripts"}}
|
{{#contentFor "scripts"}}
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user