Compare commits

..

2 Commits

Author SHA1 Message Date
legion e608ad1868 Add animated logo
continuous-integration/drone/push Build is passing Details
2020-12-02 00:13:08 +01:00
legion c02a36bcb2 Fix docker container 2020-12-02 00:13:08 +01:00
4 changed files with 10 additions and 7 deletions

View File

@ -1,6 +1,6 @@
FROM alpine:3.12
RUN apk add --no-cache hugo
RUN apk add --no-cache hugo git
WORKDIR /var/www/html
VOLUME /var/www/html

View File

@ -4,12 +4,7 @@ menu:
main:
weight: 1
---
{{
<video loop muted title=`A router labelled "franconian.net" with a "window" to the world of rC3 and the hackspaces backspace, Hackzogtum, and Nerd2Nerd connected to it.`>
<source src="/franconia_animated.mp4" type=video/mp4>
</video>
}}
{{<video mp4=`/franconia_animated.mp4` webm=`/franconia_animated.webm` alt=`A router labelled "franconian.net" with a "window" to the world of rC3 and the hackspaces backspace, Hackzogtum, and Nerd2Nerd connected to it.`>}}
## cat content/*

View File

@ -0,0 +1 @@
{{.Inner}}

View File

@ -0,0 +1,7 @@
<figure>
<video muted autoplay loop>
<source src="{{ .Get "mp4" }}" type="video/mp4">
<source src="{{ .Get "webm" }}" type="video/webm">
</video>
<figcaption>{{ .Get "alt" }}</figcaption>
</figure>