9 Commits
zola ... search

Author SHA1 Message Date
b1c6afa81c Add filtering 2024-02-08 13:31:46 +01:00
9da3c406dd New structure for filters 2024-02-07 11:09:04 +01:00
93324cc0ed The Rains Of Castamere 2024-02-07 09:43:26 +01:00
46e786389c SVG color in RGBA 2024-02-07 09:40:37 +01:00
16b014c5fa Fix metadata 2024-02-07 09:39:54 +01:00
51f29734ee Basic styling for song-list 2024-02-06 19:49:24 +01:00
1ba00b087d Basic structure for song-list 2024-02-06 18:08:40 +01:00
9a64cb55a6 Song styling in SCSS 2024-02-06 18:04:50 +01:00
ed49c101d3 Integrate Zola 2024-02-06 14:18:25 +01:00
157 changed files with 723 additions and 59 deletions
.gitea/workflows
.gitignorechordpro.json
classic
config.toml
content
_index.md
ajee
amazonka
bila
brejle
byt-stale-mlad
cadillac
ceske-hity
cesta-do-hlubin-punkacovi-duse
chaluj
ciro
cista-jak-vizovice
deti-raje
divokej-horskej-tymian
hudsonsky-sify
ital-nezna-ten-zazrak
jaro-na-aljasce
jdem-zpatky-do-lesu
jennifer-lady
jolene
jsi-senzacni
karolina
kdybych-ja-byl-kovarem
kdyz-punkaci-starnou
kundicka-ruzova
ldelissimo
lidojedi-standa
loch-lomond
ma-mila-ma-mila
mravenec
nalej-ruma
nejlip-jim-bylo
nonstop
o-zeny-zeny
par-minut
picovina
plzenska
posledni-kovboj
prasnice
prazdny-nadrazi
rano-bylo-stejny
romidci
sado-maso
sedmnact-dnu
severni-vietnam
skala
spalovac-chlastu-standa
spalovac-chlastu
stiny-na-dusi
strasidylko-emilek
sundej-z-hodin-zavazi
tereza
the-rains-of-castamere
toulavej
tri-kamosky-psycholozky
uz-to-nenapravim
zahrada-ticha
zamilovany-nestastna
zatracenej-zivot
zimni-kralovna
zmastenej
zvireci-holokaust
zvonik
makefile
mixtape
readme.md
sass
static
templates

@ -6,6 +6,7 @@ on:
- master
env:
ZOLA_VERSION: "0.18.0"
HOST: ${{ secrets.SSH_HOSTNAME }}
HOST_DIR: ${{ secrets.SSH_TARGET_DIR }}
SSH_USERNAME: ${{ secrets.SSH_USERNAME }}
@ -29,9 +30,17 @@ jobs:
- name: Install Chordpro
run: cpanm install chordpro
- name: Build
- name: Install Zola
run: |
wget https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz
tar -xvzf *.tar.gz
- name: Build Chordpro
run: make
- name: Build Zola
run: ./zola build
- name: Deploy
run: |
apt-get install -y --no-install-recommends rsync
@ -39,4 +48,4 @@ jobs:
ssh-add - <<< "${SSH_PRIVATE_KEY}"
mkdir -p ~/.ssh/
ssh-keyscan -H "${HOST}" >> ~/.ssh/known_hosts
rsync -ra --delete-after ./* "${SSH_USERNAME}@${HOST}:${HOST_DIR}"
rsync -ra --delete-after public/* "${SSH_USERNAME}@${HOST}:${HOST_DIR}"

3
.gitignore vendored

@ -1,4 +1,5 @@
*.pdf
*.html
content/*/*.html
devel/
archive/
public/

@ -9,7 +9,7 @@
"headspace" : 40,
"footspace" : 20,
"fontdir" : [ "fonts/liberation-fonts-ttf-2.1.5/" ],
"fontdir" : [ "static/fonts/liberation-fonts-ttf-2.1.5/" ],
"fontconfig" : {
"serif" : {
"" : "LiberationSerif-Regular.ttf",
@ -71,5 +71,10 @@
"description" : "dingbats 10"
}
}
},
"html" : {
"styles" : {
"display" : "/chordpro.css"
}
}
}

@ -1 +0,0 @@
../chordpro.css

@ -1 +0,0 @@
Klasické písničky, které hrajou trampové.

17
config.toml Normal file

@ -0,0 +1,17 @@
base_url = "https://mixtape.0x45.cz"
title = "mixtape"
compile_sass = true
build_search_index = false
generate_feed = false
taxonomies = [
{ name = "category" },
{ name = "artist" },
]
[markdown]
highlight_code = false
smart_punctuation = true
external_links_target_blank = true
external_links_no_follow = true
external_links_no_referrer = true

4
content/_index.md Normal file

@ -0,0 +1,4 @@
+++
page_template = "song.html"
sort_by = "title"
+++

6
content/ajee/index.md Normal file

@ -0,0 +1,6 @@
+++
title = "Ajéé"
[taxonomies]
category = ["mixtape"]
artist = ["Punk Floyd"]
+++

@ -0,0 +1,6 @@
+++
title = "Amazonka"
[taxonomies]
category = ["classic"]
artist = ["Hop Trop"]
+++

5
content/bila/index.md Normal file

@ -0,0 +1,5 @@
+++
title = "Bílá"
[taxonomies]
category = ["mixtape"]
+++

6
content/brejle/index.md Normal file

@ -0,0 +1,6 @@
+++
title = "Brejle (K-classic Mix)"
[taxonomies]
category = ["mixtape"]
artist = ["Morčata na útěku"]
+++

@ -0,0 +1,6 @@
+++
title = "Být stále mlád"
[taxonomies]
category = ["mixtape"]
artist = ["Karel Gott"]
+++

@ -0,0 +1,6 @@
+++
title = "Cadillac"
[taxonomies]
category = ["classic"]
artist = ["Pavel Brümer"]
+++

@ -0,0 +1,6 @@
+++
title = "České hity"
[taxonomies]
category = ["mixtape"]
artist = ["Triky a pověry"]
+++

@ -0,0 +1,6 @@
+++
title = "Cesta Do Hlubin Punkáčovi Duše"
[taxonomies]
category = ["mixtape"]
artist = ["Vision Days"]
+++

@ -1,5 +1,5 @@
{title: Cháluj}
{artist: Morřata na útěku}
{artist: Morčata na útěku}
{capo: 3}
{c: Capo 3/5}

6
content/chaluj/index.md Normal file

@ -0,0 +1,6 @@
+++
title = "Cháluj"
[taxonomies]
category = ["mixtape"]
artist = ["Morčata na útěku"]
+++

6
content/ciro/index.md Normal file

@ -0,0 +1,6 @@
+++
title = "Číro"
[taxonomies]
category = ["mixtape"]
artist = ["E!E"]
+++

@ -0,0 +1,6 @@
+++
title = "Čistá jak Vizovice"
[taxonomies]
category = ["mixtape"]
artist = ["Fleret"]
+++

@ -0,0 +1,6 @@
+++
title = "Děti Ráje"
[taxonomies]
category = ["mixtape"]
artist = ["Michal David"]
+++

@ -0,0 +1,6 @@
+++
title = "Divokej horskej tymián"
[taxonomies]
category = ["classic"]
artist = ["Žalman"]
+++

@ -0,0 +1,6 @@
+++
title = "Hudsonský šífy"
[taxonomies]
category = ["classic"]
artist = ["Wabi Daněk"]
+++

@ -0,0 +1,6 @@
+++
title = "Ital nezná ten zázrak"
[taxonomies]
category = ["mixtape"]
artist = ["Triky a pověry"]
+++

@ -0,0 +1,6 @@
+++
title = "Jaro na Aljašce"
[taxonomies]
category = ["classic"]
artist = ["K. T. O."]
+++

@ -0,0 +1,6 @@
+++
title = "Jdem zpátky do lesů"
[taxonomies]
category = ["classic"]
artist = ["Žalman"]
+++

@ -1,4 +1,5 @@
{title: Jdem zpátky do lesů}
{artist: Žalman}
[Am7]Sedím na kolejích, [D]které nikam neve[G]dou, [C][G]
[Am7]koukám na kopretinu, jak [D]miluje se s lebe[G]dou, [C][G]

@ -0,0 +1,6 @@
+++
title = "Jennifer Lady"
[taxonomies]
category = ["classic"]
artist = ["Nedvědi"]
+++

6
content/jolene/index.md Normal file

@ -0,0 +1,6 @@
+++
title = "Jolene"
[taxonomies]
category = ["classic"]
artist = ["Fešáci"]
+++

@ -0,0 +1,6 @@
+++
title = "Jsi senzační"
[taxonomies]
category = ["mixtape"]
artist = ["Holki"]
+++

@ -0,0 +1,6 @@
+++
title = "Karolína"
[taxonomies]
category = ["classic"]
artist = ["Kamelot"]
+++

@ -1,4 +1,5 @@
{title: Karolína}
{artist: Kamelot}
{define: Hm base-fret 1 frets 2 2 4 4 3 2 fingers 1 1 3 4 2 1}

@ -0,0 +1,6 @@
+++
title = "Kdybych já byl kovářem"
[taxonomies]
category = ["classic"]
artist = ["Petr Spálený"]
+++

@ -0,0 +1,6 @@
+++
title = "Když punkáči stárnou"
[taxonomies]
category = ["mixtape"]
artist = ["Tragedis"]
+++

@ -0,0 +1,6 @@
+++
title = "Kundička růžová"
[taxonomies]
category = ["mixtape"]
artist = ["Standa"]
+++

@ -1,4 +1,5 @@
{title: Kundička růžová}
{artist: Standa}
{capo: 3}
{c: Capo: 3}

@ -0,0 +1,6 @@
+++
title = "L'Dělissimo"
[taxonomies]
category = ["mixtape"]
artist = ["Morčata na útěku"]
+++

@ -0,0 +1,6 @@
+++
title = "Lidojedi"
[taxonomies]
category = ["mixtape"]
artist = ["Tři sestry"]
+++

@ -0,0 +1,6 @@
+++
title = "Loch Lomond"
[taxonomies]
category = ["classic"]
artist = ["Waldemar Matuška"]
+++

@ -0,0 +1,6 @@
+++
title = "Má milá, má milá"
[taxonomies]
category = ["mixtape"]
artist = ["Poletíme?"]
+++

@ -0,0 +1,6 @@
+++
title = "Mravenec"
[taxonomies]
category = ["mixtape"]
artist = ["E!E"]
+++

@ -0,0 +1,6 @@
+++
title = "Nalej ruma"
[taxonomies]
category = ["mixtape"]
artist = ["Standa"]
+++

@ -0,0 +1,6 @@
+++
title = "Nejlíp jim bylo"
[taxonomies]
category = ["mixtape"]
artist = ["Mňága a Žďorp"]
+++

6
content/nonstop/index.md Normal file

@ -0,0 +1,6 @@
+++
title = "Non stop"
[taxonomies]
category = ["mixtape"]
artist = ["Alkehol"]
+++

@ -0,0 +1,6 @@
+++
title = "Ó ženy ženy"
[taxonomies]
category = ["mixtape"]
artist = ["Triky a pověry"]
+++

@ -0,0 +1,6 @@
+++
title = "Pár minut"
[taxonomies]
category = ["mixtape"]
artist = ["Cop"]
+++

@ -0,0 +1,6 @@
+++
title = "Píčovina"
[taxonomies]
category = ["mixtape"]
artist = ["Morčata na útěku"]
+++

@ -0,0 +1,6 @@
+++
title = "Hideen Track - Plzeňská"
[taxonomies]
category = ["mixtape"]
artist = ["Morčata na útěku"]
+++

@ -0,0 +1,6 @@
+++
title = "Poslední Kovboj"
[taxonomies]
category = ["classic"]
artist = ["Michal Tučný"]
+++

@ -0,0 +1,6 @@
+++
title = "Prasnice"
[taxonomies]
category = ["mixtape"]
artist = ["Standa"]
+++

@ -1,8 +1,9 @@
{title: Prasnice}
{c: Originál Capo II (A, Bm, D, A, E)}
{artist: Standa}
{columns: 2}
{c: Originál Capo II (A, Bm, D, A, E)}
{sov}
[G]Ve tři ráno mi nesvědčí, [Am]že mám voči prasečí.
Co s [C]tím? Radši zapla[G]tím. [D]

@ -0,0 +1,6 @@
+++
title = "Prázdný nádraží"
[taxonomies]
category = ["classic"]
artist = ["Ozvěna"]
+++

@ -1,4 +1,5 @@
{title: Prázdný nádraží}
{artist: Ozvěna}
{soc}
Jen prázdný [C]nádraží na tebe dejchá samotou

@ -0,0 +1,6 @@
+++
title = "Ráno bylo stejný"
[taxonomies]
category = ["classic"]
artist = ["Žalman"]
+++

@ -1,4 +1,5 @@
{title: Ráno bylo stejný}
{artist: Žalman}
{define: Hm base-fret 1 frets 2 2 4 4 3 2 fingers 1 1 3 4 2 1}

6
content/romidci/index.md Normal file

@ -0,0 +1,6 @@
+++
title = "Romídci"
[taxonomies]
category = ["mixtape"]
artist = ["Morčata na útěku"]
+++

@ -0,0 +1,6 @@
+++
title = "Sado maso"
[taxonomies]
category = ["mixtape"]
artist = ["Poletíme?"]
+++

@ -0,0 +1,6 @@
+++
title = "Sedmnáct dnů"
[taxonomies]
category = ["classic"]
artist = ["Wabi Ryvola"]
+++

@ -0,0 +1,6 @@
+++
title = "Severní Vietnam"
[taxonomies]
category = ["mixtape"]
artist = ["Morčata na útěku"]
+++

6
content/skala/index.md Normal file

@ -0,0 +1,6 @@
+++
title = "Skála"
[taxonomies]
category = ["classic"]
artist = ["Folk Team"]
+++

@ -0,0 +1,6 @@
+++
title = "Spalovač chlastu"
[taxonomies]
category = ["mixtape"]
artist = ["Alkehol"]
+++

@ -0,0 +1,6 @@
+++
title = "Spalovač chlastu"
[taxonomies]
category = ["mixtape"]
artist = ["Alkehol"]
+++

Some files were not shown because too many files have changed in this diff Show More