progress
This commit is contained in:
parent
83a1783bab
commit
7ae823c921
9 changed files with 39 additions and 52 deletions
35
hugo.toml
35
hugo.toml
|
|
@ -28,42 +28,21 @@ enableRobotsTXT = "false"
|
|||
author = "Basspistol"
|
||||
[params.geo]
|
||||
timezone = "Europe/Switzerland"
|
||||
lat = "46.21242"
|
||||
long = "6.11550"
|
||||
region = "CH-NE"
|
||||
street = "ruelle William-Mayor 2"
|
||||
locality = "Neuchâtel"
|
||||
lat = "46.20406"
|
||||
long = "6.13366"
|
||||
region = "CH-GE"
|
||||
street = "Quai Du Seujet 34"
|
||||
locality = "Geneve"
|
||||
country = "Switzerland"
|
||||
postalcode = "2000"
|
||||
postalcode = "1201"
|
||||
|
||||
[params.homepage_meta_tags]
|
||||
meta_og_type = "website"
|
||||
meta_og_image = "images/hodlingSA-meta-image.jpg"
|
||||
meta_og_image = "images/bpist-banner.png"
|
||||
# meta_twitter_site = "@mytwitterhandle"
|
||||
# meta_twitter_creator = "@mytwitt"
|
||||
|
||||
|
||||
[params.podcast]
|
||||
title = "Hugo Podcast"
|
||||
subtitle = "Subtitle"
|
||||
summary = "Summary"
|
||||
authors = [ "Author" ]
|
||||
email = "example@example.com"
|
||||
image = "/img/podcast-logo.png"
|
||||
audio_base_url = "https://cdn.example.com/podcast"
|
||||
copyright = "Copyright"
|
||||
category = "Category"
|
||||
sub_category = "Sub Category"
|
||||
explicit = "no"
|
||||
itunesID = 12345677
|
||||
itunes_type = "episodic" # accepted values are: "episodic" or "serial"
|
||||
update_period = "weekly"
|
||||
update_frequency = 1
|
||||
funding_url = "https://example.com/funding"
|
||||
funding_text = "Buy me a coffee"
|
||||
[params._editor]
|
||||
default_path = "/"
|
||||
|
||||
[permalinks]
|
||||
posts = "/blog/:year-:month-:day-:slug/"
|
||||
pages = "/:contentbasename/"
|
||||
|
|
|
|||
|
|
@ -30,13 +30,8 @@ body {
|
|||
filter: grayscale(0%) !important;
|
||||
transition: filter .1s linear;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#navigation {
|
||||
|
||||
* {
|
||||
|
|
@ -57,11 +52,8 @@ width: calc(100vw - 40px);
|
|||
height: 100px;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,.3);
|
||||
z-index: 1000;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
nav {
|
||||
|
||||
* {
|
||||
|
|
@ -97,9 +89,11 @@ nav {
|
|||
margin: auto;
|
||||
padding: 10px;
|
||||
max-width: 100px;
|
||||
display: flex;
|
||||
}
|
||||
li > a {
|
||||
color: orange;
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -78,15 +78,21 @@ figcaption {
|
|||
text-decoration: none;
|
||||
line-height: 1.25em;
|
||||
overflow-y: hidden;
|
||||
|
||||
p {
|
||||
font-size: .8em;
|
||||
font-size: .5em;
|
||||
line-height: 1.75em;
|
||||
|
||||
strong {
|
||||
font-size: 1.25em;
|
||||
font-size: 1.5em;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 1024px) {
|
||||
p {
|
||||
font-size: .9em;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.section-headers {
|
||||
|
|
|
|||
|
|
@ -115,8 +115,8 @@
|
|||
<section id="gancio">
|
||||
<article class="section-headers">
|
||||
<h2>Agenda</h2>
|
||||
<p>Outernational Party people <br />
|
||||
Powerful. Syndicated. Artists.</p>
|
||||
<p>World-wide events you never hear about. <br />
|
||||
Likely happening under your feet.</p>
|
||||
</article>
|
||||
|
||||
<div class="border">
|
||||
|
|
|
|||
|
|
@ -131,6 +131,7 @@
|
|||
<figcaption>
|
||||
<p><strong>{{ .username }}</strong>
|
||||
<br />
|
||||
|
||||
</p>
|
||||
</figcaption>
|
||||
</figure>
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
}
|
||||
h2 {
|
||||
font-size: 24em;
|
||||
font-size: 12em;
|
||||
/* text-transform: uppercase;*/
|
||||
line-height: 1em;
|
||||
flex: 1 1 100%;
|
||||
|
|
|
|||
|
|
@ -32,7 +32,9 @@
|
|||
width: 100%;
|
||||
}
|
||||
.cartouche > a {
|
||||
flex: 0 0 100px;
|
||||
flex: 0 0 125px;
|
||||
height: 125px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.cartouche > p {
|
||||
flex: 1 1 100px;
|
||||
|
|
@ -51,12 +53,13 @@
|
|||
flex: 1 1 100%;
|
||||
}
|
||||
p {
|
||||
|
||||
font-size: .5em;
|
||||
flex: 1 1 100%;
|
||||
line-height: 1em;
|
||||
|
||||
strong {
|
||||
font-size: 1.5em;
|
||||
line-height: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -65,7 +68,11 @@
|
|||
font-size: 8em;
|
||||
}
|
||||
p {
|
||||
font-size: .9em;
|
||||
}
|
||||
strong {
|
||||
font-size: 1em;
|
||||
line-height: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -129,12 +136,10 @@
|
|||
{{ with $data.data }}
|
||||
{{ range . | shuffle | last 5 }}
|
||||
|
||||
<article class="peertubes" style="background-image:linear-gradient(to bottom, rgba(128, 0, 128, 1), rgba(128, 0, 128, .75)),url(https://v.basspistol.org{{ .video.previewPath }})">
|
||||
<article class="peertubes" style="background-image:linear-gradient(to bottom, rgba(128, 0, 128, .5), rgba(128, 0, 128, 1)),url(https://v.basspistol.org{{ .video.previewPath }})">
|
||||
<div class="cartouche">
|
||||
<a href="{{ .video.url }}" target="_blank">
|
||||
<svg
|
||||
width="75"
|
||||
height="75"
|
||||
version="1.1"
|
||||
viewBox="0 0 57.679166 57.67917"
|
||||
id="svg2"
|
||||
|
|
@ -201,8 +206,7 @@
|
|||
</svg>
|
||||
</a>
|
||||
<div>
|
||||
<p class="title"><strong>{{ .video.name }}</strong></p>
|
||||
<p> </p>
|
||||
<p><strong>{{ .video.name }}</strong></p>
|
||||
<p> </p>
|
||||
<p class="author">{{ .video.account.displayName }}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -24,6 +24,9 @@
|
|||
<meta name="author" content="{{ .Site.Title }}" />
|
||||
<meta name="generator" content="Hugo" />
|
||||
|
||||
<!-- Fedi -->
|
||||
<meta name="fediverse:creator" content="@syndicate@s.basspistol.org">
|
||||
|
||||
<!-- Dublin Core basic info -->
|
||||
|
||||
<meta name="dcterms.Identifier" content="{{ .Permalink }}" />
|
||||
|
|
|
|||
BIN
themes/basspistol2025/static/images/bpist-banner.png
Normal file
BIN
themes/basspistol2025/static/images/bpist-banner.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 44 KiB |
Loading…
Add table
Add a link
Reference in a new issue