add permalinks for program headings
This commit is contained in:
parent
be380c6d12
commit
044dea263b
3 changed files with 34 additions and 3 deletions
|
@ -122,5 +122,7 @@ a.btn:hover {
|
||||||
--color-button-active: #fff;
|
--color-button-active: #fff;
|
||||||
--color-background-page: #fefefe;
|
--color-background-page: #fefefe;
|
||||||
--color-background-header: rgba(255,255,255,.92);
|
--color-background-header: rgba(255,255,255,.92);
|
||||||
|
--color-permalink: #9e9e9ea6;
|
||||||
|
/* --color-permalink: #cdcdcda6; */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,31 @@
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.permalink {
|
||||||
|
color: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
font-weight: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permalink::before {
|
||||||
|
content: "#";
|
||||||
|
color: var(--color-permalink);
|
||||||
|
font-size: .7em;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
visibility: hidden;
|
||||||
|
position: absolute;
|
||||||
|
left: -1.3rem;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.permalink:hover::before {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
.timeslot-container {
|
.timeslot-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-top: 40px;
|
padding-top: 40px;
|
||||||
|
|
|
@ -11,15 +11,19 @@
|
||||||
{% for date, events in program %}
|
{% for date, events in program %}
|
||||||
<section class="program-date">
|
<section class="program-date">
|
||||||
<h2 id="{{ date }}">
|
<h2 id="{{ date }}">
|
||||||
|
<a class="permalink" href="#{{date}}">
|
||||||
{{ toDate(date).toLocaleDateString(lang, { weekday: 'long', month: 'short', day: 'numeric' }) }}
|
{{ toDate(date).toLocaleDateString(lang, { weekday: 'long', month: 'short', day: 'numeric' }) }}
|
||||||
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
<ul>
|
<ul>
|
||||||
{% for event in events %}
|
{% for event in events %}
|
||||||
<li class="timeslot">
|
<li class="timeslot">
|
||||||
<div class="timeslot-container">
|
<div class="timeslot-container">
|
||||||
<h3 id="{{date}}_{{loop.index}}">
|
<h3 id="{{date}}_{{loop.index}}">
|
||||||
|
<a class="permalink" href="#{{date}}_{{loop.index}}">
|
||||||
{% if event.livestream %}{% icon "solid:video", title="Livestream" %}{% endif %}
|
{% if event.livestream %}{% icon "solid:video", title="Livestream" %}{% endif %}
|
||||||
{{ event.title | localized }}
|
{{ event.title | localized }}
|
||||||
|
</a>
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<div class="timeslot-time">
|
<div class="timeslot-time">
|
||||||
|
|
Loading…
Add table
Reference in a new issue