Init this site
This commit is contained in:
commit
05eeee19b3
23
.drone.yml
Normal file
23
.drone.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: deploy beta.lumbung.space
|
||||||
|
steps:
|
||||||
|
- name: bundle static
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
username: decentral1se
|
||||||
|
password:
|
||||||
|
from_secret: docker_reg_passwd
|
||||||
|
repo: decentral1se/beta.lumbung.space
|
||||||
|
tags: latest
|
||||||
|
|
||||||
|
- name: deployment
|
||||||
|
image: decentral1se/stack-ssh-deploy:latest
|
||||||
|
settings:
|
||||||
|
stack: beta_lumbung_space
|
||||||
|
host: lumbung.space
|
||||||
|
deploy_key:
|
||||||
|
from_secret: drone_ssh_lumbung.space
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- main
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
.env
|
||||||
|
/public/
|
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
FROM klakegg/hugo:latest
|
||||||
|
|
||||||
|
RUN apt update && \
|
||||||
|
apt install -y \
|
||||||
|
curl \
|
||||||
|
git \
|
||||||
|
python3
|
||||||
|
|
||||||
|
EXPOSE 8000
|
||||||
|
|
||||||
|
COPY . /src/
|
||||||
|
|
||||||
|
ENTRYPOINT ["/bin/bash"]
|
||||||
|
|
||||||
|
CMD ["-c", "hugo && python3 -m http.server --bind 0.0.0.0 --directory public 8000"]
|
5
README.md
Normal file
5
README.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# beta.lumbung.space
|
||||||
|
|
||||||
|
Public front-end for [lumbung.space](https://lumbung.space).
|
||||||
|
|
||||||
|
The theme comes from [git.vvvvvvaria.org/rra/lumbung-theme](https://git.vvvvvvaria.org/rra/lumbung-theme).
|
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
26
compose.yml
Normal file
26
compose.yml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
image: decentral1se/beta.lumbung.space:latest
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost:8000"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 10
|
||||||
|
start_period: 15s
|
||||||
|
deploy:
|
||||||
|
update_config:
|
||||||
|
failure_action: rollback
|
||||||
|
order: start-first
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.coop-cloud-site.rule=Host(`beta.lumbung.space`)"
|
||||||
|
- "traefik.http.routers.coop-cloud-site.entrypoints=web-secure"
|
||||||
|
- "traefik.http.services.coop-cloud-site.loadbalancer.server.port=8000"
|
||||||
|
- "traefik.http.routers.coop-cloud-site.tls.certresolver=production"
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external: true
|
4
config.toml
Normal file
4
config.toml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
baseURL = "https://beta.lumbung.space"
|
||||||
|
languageCode = "en-gb"
|
||||||
|
title = "beta.lumbung.space"
|
||||||
|
theme = "lumbung-theme"
|
18
themes/lumbung-theme/README.md
Normal file
18
themes/lumbung-theme/README.md
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# lumbung-theme
|
||||||
|
|
||||||
|
A Hugo theme for lumbung.space
|
||||||
|
|
||||||
|
### Installation
|
||||||
|
|
||||||
|
`cd /my/hugosite/themes`
|
||||||
|
`git clone https://git.vvvvvvaria.org/rra/lumbung-theme`
|
||||||
|
|
||||||
|
edit `/my/hugosite/config.toml`:
|
||||||
|
|
||||||
|
```
|
||||||
|
cat config.toml
|
||||||
|
baseURL = "http://localhost/"
|
||||||
|
languageCode = "en-us"
|
||||||
|
title = "lumbung.space"
|
||||||
|
theme = 'lumbung-theme'
|
||||||
|
```
|
2
themes/lumbung-theme/archetypes/default.md
Normal file
2
themes/lumbung-theme/archetypes/default.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
+++
|
||||||
|
+++
|
0
themes/lumbung-theme/layouts/404.html
Normal file
0
themes/lumbung-theme/layouts/404.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
{{- $image := .Page.Resources.GetMatch (printf "%s" (.Destination | safeURL)) -}}
|
||||||
|
<img width = "{{- $image.Width -}}" height = "{{- $image.Height -}}" alt = "{{- .PlainText | htmlUnescape -}}" src = "{{- $image.RelPermalink -}}">
|
30
themes/lumbung-theme/layouts/_default/baseof.html
Normal file
30
themes/lumbung-theme/layouts/_default/baseof.html
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="{{ .Site.LanguageCode | default "en" }}">
|
||||||
|
{{- partial "head.html" . -}}
|
||||||
|
<body>
|
||||||
|
{{- partial "header.html" . -}}
|
||||||
|
<div id="content">
|
||||||
|
{{- block "main" . }}{{- end }}
|
||||||
|
</div>
|
||||||
|
{{- partial "footer.html" . -}}
|
||||||
|
</body>
|
||||||
|
<script>
|
||||||
|
function toggleDescription(id){
|
||||||
|
document.querySelector(id).classList.toggle("collapsed");
|
||||||
|
}
|
||||||
|
function loadPlayer(id, embed_path){
|
||||||
|
media = document.querySelector('#media-'+ id)
|
||||||
|
|
||||||
|
var iframe = document.createElement('iframe');
|
||||||
|
iframe.src = embed_path + '?autoplay=1&title=0';
|
||||||
|
iframe.width = 560;
|
||||||
|
iframe.height = 315;
|
||||||
|
iframe.frameBorder = 0;
|
||||||
|
iframe.sandbox = "allow-same-origin allow-scripts allow-popups" ;
|
||||||
|
media.appendChild(iframe);
|
||||||
|
document.querySelector('#thumb-'+ id).remove();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
23
themes/lumbung-theme/layouts/_default/list.html
Normal file
23
themes/lumbung-theme/layouts/_default/list.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<section class="entries">
|
||||||
|
<div class="h-feed">
|
||||||
|
{{ range .Pages }}
|
||||||
|
<div class='card'>
|
||||||
|
<article class="h-entry">
|
||||||
|
<header>
|
||||||
|
<h2 class="p-name"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h2>
|
||||||
|
<time class="dt-published" datetime="{{ .Date.Format `Jan 02 2006` }}">{{ .Date.Format "Jan 02, 2006" }}</time>
|
||||||
|
</header>
|
||||||
|
{{ if .Truncated }}
|
||||||
|
<div class="p-summary truncated">
|
||||||
|
{{ .Summary }}
|
||||||
|
<p><a href="{{ .RelPermalink }}">Read More…</a></p>
|
||||||
|
{{ else }}
|
||||||
|
<div class="p-summary">
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
16
themes/lumbung-theme/layouts/_default/single.html
Normal file
16
themes/lumbung-theme/layouts/_default/single.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<main class="main">
|
||||||
|
<article class="h-entry">
|
||||||
|
<header>
|
||||||
|
<h1 class="p-name"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h1>
|
||||||
|
<p>
|
||||||
|
Published by <a class="p-author" href="/about">{{ $.Param "author" }}</a>
|
||||||
|
on <time class="dt-published" datetime="{{ .Date.Format `Jan 02 2006` }}">{{ .Date.Format "Jan 02, 2006" }}</time>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="e-content">
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
{{ end }}
|
29
themes/lumbung-theme/layouts/index.html
Normal file
29
themes/lumbung-theme/layouts/index.html
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<section class='entries'>
|
||||||
|
<div class="h-feed">
|
||||||
|
{{ range (.Paginator 10).Pages }}
|
||||||
|
|
||||||
|
{{ if in .Params.category "tv"}}
|
||||||
|
|
||||||
|
{{- partial "video_box.html" . -}}
|
||||||
|
|
||||||
|
{{ else if in .Params.category "calendar" }}
|
||||||
|
|
||||||
|
{{- partial "calendar_card.html" . -}}
|
||||||
|
|
||||||
|
{{ else }}
|
||||||
|
|
||||||
|
{{- partial "card.html" . -}}
|
||||||
|
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="pagination">
|
||||||
|
{{ template "_internal/pagination.html" . }}
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
{{ end }}
|
||||||
|
|
25
themes/lumbung-theme/layouts/partials/calendar_card.html
Normal file
25
themes/lumbung-theme/layouts/partials/calendar_card.html
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<div class='card calendar'>
|
||||||
|
<article class="h-entry calendar">
|
||||||
|
<header>
|
||||||
|
<h2 class="p-name"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h2>
|
||||||
|
<div class='header-filler'></div>
|
||||||
|
</header>
|
||||||
|
<div class='start-scroller'>
|
||||||
|
<marquee behavior="scroll" direction="left">
|
||||||
|
{{ .Params.localized_begin | markdownify }}
|
||||||
|
</marquee>
|
||||||
|
</div>
|
||||||
|
<div class='calendar metadata'>
|
||||||
|
<div class='calendar-duration'>{{ .Params.duration }}</div>
|
||||||
|
<input class='descr_button' type='checkbox' id='toggle-{{ .Params.uid }}'/>
|
||||||
|
<label class='calendar' for='toggle-{{ .Params.uid }}'>↕</label>
|
||||||
|
<div class='calendar-location'>{{ .Params.location | markdownify }}</div>
|
||||||
|
<div class='calendar description' id='event-{{ .Params.uid }}'>
|
||||||
|
{{.Content}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</article>
|
||||||
|
</div>
|
34
themes/lumbung-theme/layouts/partials/card.html
Normal file
34
themes/lumbung-theme/layouts/partials/card.html
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<div class='card'>
|
||||||
|
<article class="h-entry">
|
||||||
|
<header>
|
||||||
|
<h2 class="p-name"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h2>
|
||||||
|
<div class="header-metadata">
|
||||||
|
<time class="dt-published" datetime="{{ .Date.Format `Jan 02 2006` }}">{{ .Date.Format "Jan 02, 2006" }}</time>
|
||||||
|
{{ if .Params.author }}
|
||||||
|
<div class='author'>{{.Params.author}}</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
{{ $img := (.Resources.ByType "image").GetMatch "*featured*" }}
|
||||||
|
|
||||||
|
<div class="p-summary {{if .Truncated}} truncated {{end}} {{if $img}} image {{end}}" >
|
||||||
|
<div class="summary-text">
|
||||||
|
{{ .Summary }}
|
||||||
|
</div>
|
||||||
|
{{ with $img }}
|
||||||
|
{{ $thumb := .Resize "400x300"}}
|
||||||
|
<div class="summary-image">
|
||||||
|
<img src="{{ $thumb.Permalink }}" alt="{{ .Title }}">
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
{{ if .Truncated }}
|
||||||
|
<footer class='post-footer'>
|
||||||
|
<div class='read-more'><a href="{{ .RelPermalink }}">Read More…</a></div>
|
||||||
|
<div class='footer-filler'></div>
|
||||||
|
</footer>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
</article>
|
||||||
|
</div>
|
5
themes/lumbung-theme/layouts/partials/footer.html
Normal file
5
themes/lumbung-theme/layouts/partials/footer.html
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<footer class="bar">
|
||||||
|
<div>
|
||||||
|
Imprint - Privacy Policy - Copyright
|
||||||
|
</div>
|
||||||
|
</footer>
|
25
themes/lumbung-theme/layouts/partials/head.html
Normal file
25
themes/lumbung-theme/layouts/partials/head.html
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<title>{{ if .IsHome }} {{ .Site.Title }} {{ else }} {{ .Title }} | {{ .Site.Title }} {{ end }}</title>
|
||||||
|
|
||||||
|
{{- if or .Description .Site.Params.description }}
|
||||||
|
<meta name="description" content="{{ .Description | default .Site.Params.description }}">
|
||||||
|
{{- end }}
|
||||||
|
{{- if or .Description .Site.Params.description }}
|
||||||
|
<meta name="author" content='{{ .Site.Params.author }}'>
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/main.css">
|
||||||
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/video-box.css">
|
||||||
|
|
||||||
|
<link rel="canonical" href="{{ .Permalink }}">
|
||||||
|
{{ with .Site.Params.favicon }}
|
||||||
|
<link rel="icon" type="image/ico" href="{{ . | absURL }}">
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ with .OutputFormats.Get "rss" -}}
|
||||||
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||||||
|
{{ end -}}
|
||||||
|
</head>
|
12
themes/lumbung-theme/layouts/partials/header.html
Normal file
12
themes/lumbung-theme/layouts/partials/header.html
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<header class="bar" id="top-menu">
|
||||||
|
<h1 class="logo"><a href="/"><img src="{{ .Site.Params.logo }}" alt="{{ .Site.Title }}"/></a></h1>
|
||||||
|
<nav class="menu">
|
||||||
|
<ul>
|
||||||
|
{{ with .Site.Menus.main }}
|
||||||
|
{{ range . }}
|
||||||
|
<li class="menu-nav-item"> <a href="{{ .URL | relURL }}" title="{{ .Title }}">{{ .Name }}</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
26
themes/lumbung-theme/layouts/partials/video_box.html
Normal file
26
themes/lumbung-theme/layouts/partials/video_box.html
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<div class='video-box'>
|
||||||
|
<div class='media' id='media-{{ .Params.uuid }}'>
|
||||||
|
<span class='video-thumbnail' id='thumb-{{ .Params.uuid }}'
|
||||||
|
href="https://tv.lumbung.space/videos/watch/{{ .Params.uuid }}"
|
||||||
|
onclick="loadPlayer(
|
||||||
|
'{{ .Params.uuid }}',
|
||||||
|
'https://tv.lumbung.space/videos/embed/{{ .Params.uuid }}'
|
||||||
|
)">
|
||||||
|
<img src="{{.Site.BaseURL}}{{ .File.Dir }}{{ .Params.preview_image }}">
|
||||||
|
|
||||||
|
<div class="video-thumbnail-duration-overlay">{{.Params.video_duration}}</div>
|
||||||
|
<div class="play-overlay">
|
||||||
|
<div class="play-icon"></div>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class='video metadata'>
|
||||||
|
<div class='title'>{{ .Title }}</div>
|
||||||
|
<div class='video channel'><a href='{{ .Params.channel_url }}'> {{ .Params.video_channel }}</a></div>
|
||||||
|
<input class='descr_button' type='checkbox' id='toggle-{{ .Params.uuid }}'/>
|
||||||
|
<label class='video' for='toggle-{{ .Params.uuid }}'>↕</label>
|
||||||
|
<div class='video date'> <a href='https://tv.lumbung.space/videos/watch/{{ .Params.uuid }}'> {{ .Date.Format "Jan 02, 2006" }}</a></div>
|
||||||
|
<div class="description video" id='vid-{{ .Params.uuid }}'> {{ .Content }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
329
themes/lumbung-theme/static/css/main.css
Normal file
329
themes/lumbung-theme/static/css/main.css
Normal file
@ -0,0 +1,329 @@
|
|||||||
|
/*nice body-border color combos
|
||||||
|
|
||||||
|
antiquewhite - burlywood
|
||||||
|
peachpuff - tomato
|
||||||
|
lightpink - crimson
|
||||||
|
lightblue - cornflowerblue
|
||||||
|
palegreen - lightseagreen
|
||||||
|
|
||||||
|
fonts
|
||||||
|
bungeeshade
|
||||||
|
allerta
|
||||||
|
*/
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--border-color: tomato;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*Main Stuff*/
|
||||||
|
body {
|
||||||
|
font-size:16px;
|
||||||
|
font-family: sans-serif;
|
||||||
|
color: maroon;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #1B4C8A;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
|
margin: 2em auto;
|
||||||
|
max-width: 80%;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card{
|
||||||
|
|
||||||
|
border: 2px solid var(--border-color);
|
||||||
|
box-shadow:1em 1em 0 #d2d1c8;
|
||||||
|
background-color: #fff09d;
|
||||||
|
max-width: 600px;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
flex: auto;
|
||||||
|
margin: 0 3em 3em 0;
|
||||||
|
align-self: start;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.card{
|
||||||
|
background-color: peachpuff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.card:nth-child(even){
|
||||||
|
transform: rotate(-1deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.card:nth-child(odd){
|
||||||
|
transform: rotate(1deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.card:nth-child(5){
|
||||||
|
transform: rotate(2deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.video.box{
|
||||||
|
margin-top:3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bar{
|
||||||
|
border: 2px solid var(--border-color);
|
||||||
|
box-shadow: 0.6em 0.6em 0 #d2d1c8;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
margin-top:3em;
|
||||||
|
display: inline-block;
|
||||||
|
background-color: #fff09d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-feed{
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row wrap;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* base header & menu */
|
||||||
|
|
||||||
|
#top-menu{
|
||||||
|
transform: rotate(-3deg);
|
||||||
|
margin-left: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
margin-left: 0.5em;
|
||||||
|
margin-right: 0.5em;
|
||||||
|
margin-top: 0.2em;
|
||||||
|
margin-bottom: 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
border-top: 2px solid var(--border-color);
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu ul{
|
||||||
|
list-style-type: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-nav-item {
|
||||||
|
border-right: 2px solid var(--border-color);
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*Article Summary Cards*/
|
||||||
|
|
||||||
|
.h-entry header {
|
||||||
|
display: flex;
|
||||||
|
border-bottom: 2px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-entry header h2{
|
||||||
|
padding: 0.2em;
|
||||||
|
margin: 0;
|
||||||
|
padding-right: 0.3em;
|
||||||
|
padding-left: 0.3em;
|
||||||
|
border-right: 2px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-entry header h2:hover{
|
||||||
|
box-shadow: inset 4px 4px 0px tomato;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-entry header h2 a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.h-entry header .header-metadata{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.5em;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column wrap;
|
||||||
|
font-size: 0.9em;
|
||||||
|
align-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-summary.truncated.image {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-summary.truncated {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.summary-text {
|
||||||
|
flex: 1;
|
||||||
|
padding: 1em;
|
||||||
|
max-height: 300px;
|
||||||
|
min-width: 20ch;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.summary-image > img {
|
||||||
|
height: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
max-width: 100%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.summary-image{
|
||||||
|
border-right: 2px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
footer.post-footer {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row-reverse;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-filler{
|
||||||
|
border-top: 2px solid var(--border-color);
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
.read-more {
|
||||||
|
border-top: 2px solid var(--border-color);
|
||||||
|
border-left: 2px solid var(--border-color);
|
||||||
|
align-content: flex-end;
|
||||||
|
padding: 0.2em 1em 0.2em 1em;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* calendar cards */
|
||||||
|
|
||||||
|
.card.calendar {
|
||||||
|
border: 2px solid cornflowerblue;
|
||||||
|
box-shadow:1em 1em 0 #d2d1c8;
|
||||||
|
background-color: lightblue;
|
||||||
|
max-width: 300px;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
flex: auto;
|
||||||
|
margin: 0 3em 3em 0;
|
||||||
|
align-self: start;
|
||||||
|
color: royalblue;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-entry.calendar header {
|
||||||
|
display: flex;
|
||||||
|
border-bottom: 2px solid cornflowerblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-entry.calendar header h2{
|
||||||
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
||||||
|
margin: 0;
|
||||||
|
border-right: 2px solid cornflowerblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-entry.calendar header h2:hover{
|
||||||
|
box-shadow: inset 4px 4px 0px royalblue;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-entry.calendar header h2 a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: royalblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-filler {
|
||||||
|
min-width: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendar-location{
|
||||||
|
font-size: 0.8rem;
|
||||||
|
min-width: 20%;
|
||||||
|
padding: 0.5em 0.9em 0.5em 0.9em;
|
||||||
|
border-left: 2px solid cornflowerblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendar-duration{
|
||||||
|
font-size: 0.8rem;
|
||||||
|
border-right: 2px solid cornflowerblue;
|
||||||
|
padding: 0.5em 0.9em 0.5em 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.start-scroller {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row-reverse;
|
||||||
|
border-bottom: 2px solid cornflowerblue;
|
||||||
|
}
|
||||||
|
.start-scroller marquee{
|
||||||
|
font-size: 0.8rem;
|
||||||
|
padding-top: 0.2em;
|
||||||
|
padding-bottom: 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendar .description {
|
||||||
|
border-top: 2px solid cornflowerblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Card metadata (video & calendar) */
|
||||||
|
|
||||||
|
.metadata {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description p {
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input + label +.calendar-location+.description{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:checked + label +.calendar-location+.description {
|
||||||
|
display: block;
|
||||||
|
transition: ease .5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.metadata label {
|
||||||
|
text-align: center;
|
||||||
|
vertical-align: sub;
|
||||||
|
flex-grow: 1;
|
||||||
|
font-weight: normal;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0.4em 0.9em 0.4em 0.9em;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
label:hover {
|
||||||
|
box-shadow: inset 2px 2px 0px #95948c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description{
|
||||||
|
padding: 0.5em 0.7em 0.7em 0.5em;
|
||||||
|
overflow: hidden;
|
||||||
|
flex-basis: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.descr_button {
|
||||||
|
cursor: pointer;
|
||||||
|
flex-grow: 1;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Page footer */
|
||||||
|
|
||||||
|
footer.bar {
|
||||||
|
margin-top:0;
|
||||||
|
}
|
155
themes/lumbung-theme/static/css/video-box.css
Normal file
155
themes/lumbung-theme/static/css/video-box.css
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
:root {
|
||||||
|
--video-border-color: burlywood;
|
||||||
|
--video-background-color: antiquewhite;
|
||||||
|
}
|
||||||
|
.video-box {
|
||||||
|
border:2px solid var(--video-border-color);
|
||||||
|
max-width:560px;
|
||||||
|
margin:auto;
|
||||||
|
box-shadow:1em 1em 0 #d2d1c8;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
color: chocolate;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-box:nth-child(even){
|
||||||
|
transform: rotate(-1deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-box:nth-child(odd){
|
||||||
|
transform: rotate(1deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-box:nth-child(5){
|
||||||
|
transform: rotate(3deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.video-box img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-box iframe {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-box .media {
|
||||||
|
line-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video {
|
||||||
|
background-color: var(--video-background-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video .metadata{
|
||||||
|
font-size:0.9rem;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.metadata .title{
|
||||||
|
margin-top:0;
|
||||||
|
border-top: 2px solid var(--video-border-color);
|
||||||
|
border-bottom: 2px solid var(--video-border-color);
|
||||||
|
padding:0.5em;
|
||||||
|
font-weight:700;
|
||||||
|
font-size:1.3rem;
|
||||||
|
flex-basis: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video.channel{
|
||||||
|
border-right: 2px solid var(--video-border-color);
|
||||||
|
padding: 0.5em 0.9em 0.5em 0.9em;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video.date {
|
||||||
|
float:right;
|
||||||
|
border-left: 2px solid var(--video-border-color);
|
||||||
|
padding: 0.5em 0.9em 0.5em 0.9em;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video.description {
|
||||||
|
border-top: 2px solid var(--video-border-color);
|
||||||
|
padding: 0.8em 0.8em 0.8em 0.8em;
|
||||||
|
|
||||||
|
}
|
||||||
|
.descr_button a {
|
||||||
|
color:inherit;
|
||||||
|
text-decoration: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.descr_button {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input + label + .video.date + .description{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:checked + label + .video.date +.description {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.play-icon {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(-50%,-50%) scale(.5);
|
||||||
|
border-top: 13px solid transparent;
|
||||||
|
border-bottom: 13px solid transparent;
|
||||||
|
border-left: 18px solid hsla(0,0%,100%,.95);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-thumbnail {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.video-thumbnail {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
background-color: #ececec;
|
||||||
|
transition: filter .2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-thumbnail-duration-overlay {
|
||||||
|
display: inline-block;
|
||||||
|
background-color: var(--video-background-color);
|
||||||
|
color: chocolate;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.1;
|
||||||
|
z-index: 10;
|
||||||
|
position: absolute;
|
||||||
|
padding: 1px 3px 1px 3px;
|
||||||
|
right: 5px;
|
||||||
|
bottom: 5px;
|
||||||
|
border: 2px solid var(--video-border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.play-overlay {
|
||||||
|
transition: all .2s ease;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
width: inherit;
|
||||||
|
height: inherit;
|
||||||
|
opacity: 0;
|
||||||
|
background-color: rgba(0,0,0,.3);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-thumbnail:hover {
|
||||||
|
text-decoration:none!important
|
||||||
|
}
|
||||||
|
.video-thumbnail:hover .play-overlay {
|
||||||
|
opacity:1
|
||||||
|
}
|
||||||
|
.video-thumbnail:hover .play-overlay .play-icon {
|
||||||
|
transform:translate(-50%,-50%) scale(1)
|
||||||
|
}
|
21
themes/lumbung-theme/theme.toml
Normal file
21
themes/lumbung-theme/theme.toml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# theme.toml template for a Hugo theme
|
||||||
|
# See https://github.com/gohugoio/hugoThemes#themetoml for an example
|
||||||
|
|
||||||
|
name = "Lumbung"
|
||||||
|
license = "AGPL3"
|
||||||
|
licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE"
|
||||||
|
description = ""
|
||||||
|
homepage = "http://example.com/"
|
||||||
|
tags = []
|
||||||
|
features = []
|
||||||
|
min_version = "0.41.0"
|
||||||
|
|
||||||
|
[author]
|
||||||
|
name = ""
|
||||||
|
homepage = ""
|
||||||
|
|
||||||
|
# If porting an existing theme
|
||||||
|
[original]
|
||||||
|
name = ""
|
||||||
|
homepage = ""
|
||||||
|
repo = ""
|
Reference in New Issue
Block a user