From 137a1d412f7fc09448674fc77d7d8116eeff3b63 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Thu, 1 Jul 2021 23:43:32 +0200 Subject: init --- README | 6 ++++++ _header.html | 13 +++++++++++++ _index_header.html | 26 ++++++++++++++++++++++++++ deploy.sh | 29 +++++++++++++++++++++++++++++ "itemy/spodnie-d\305\202ugie-158.md" | 3 +++ "itemy/spodnie-d\305\202ugie-164.md" | 3 +++ logo.png | Bin 0 -> 19884 bytes logo.svg | 20 ++++++++++++++++++++ style.css | 13 +++++++++++++ 9 files changed, 113 insertions(+) create mode 100644 README create mode 100644 _header.html create mode 100644 _index_header.html create mode 100755 deploy.sh create mode 100644 "itemy/spodnie-d\305\202ugie-158.md" create mode 100644 "itemy/spodnie-d\305\202ugie-164.md" create mode 100644 logo.png create mode 100644 logo.svg create mode 100644 style.css diff --git a/README b/README new file mode 100644 index 0000000..0a9cdae --- /dev/null +++ b/README @@ -0,0 +1,6 @@ +harcdzielnia +============ + +harcdzielnia to strona z listą harcerskich ubrań, które dostałem bo były już za +małe dla druhów z drużyny. Dzięki temu można taką listę wysłać rodzicom, żeby +nie musieli kupować nowych ciuszków. diff --git a/_header.html b/_header.html new file mode 100644 index 0000000..e85cbd1 --- /dev/null +++ b/_header.html @@ -0,0 +1,13 @@ + + + + + Harcdzielnia + + + +
+ +

Harcdzielnia

+
+
diff --git a/_index_header.html b/_index_header.html new file mode 100644 index 0000000..6e5e7d5 --- /dev/null +++ b/_index_header.html @@ -0,0 +1,26 @@ + + + + + Harcdzielnia + + + +
+ +

Harcdzielnia

+

Drugie życie mundurów

+
+
+

Co to harcdzielnia?

+

Jako drużynowy miałem przyjemność przyjmować wielu nowych ludzi do drużyny, ale za każdym razem pojawiał się problem, że trzeba kupić mundur. Z drugiej strony sam jako harcerz wyrosłem z wielu mundurów. I co się stało z tymi za małymi mundurami? Leżały w szafie.

+

Dlatego postanowiłem ogarnąć sprawę i stworzyć spis starych, ale sprawnych, mundurów, które będzie można za darmo odzyskać, dać im drugie życie i uratować przed kurzem i zapomnieniem gdzieś na dole szafy.

+

Jak to działa?

+

Poniżej znajduje się lista zebranych części umundurowania. Jeżeli ktoś jest w potrzebie to kontaktuje się ze mną i ustalamy jakiś termin na spotkanie / podrzucenie munduru.

+

mail: patryk.niedzwiedzinski@zhr.pl

+

albo przez tel. jak ktoś ma mój numer ;)

+

Mam za mały mundur!

+

Napisz maila/smsa z rozmiarami, a ja wrzucę i dodam do listy. +

+

Rzeczy, które mam

+
    diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..b655079 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,29 @@ +#!/bin/sh + +mkdir -p dest + +cp logo.png style.css dest + +cat _index_header.html > dest/index.html +for f in $(find itemy -name '*.md'); do + file=$(basename $f .md) + title=$(grep '^# ' $f | head -n 1 | cut -c 3-) + echo "
  • $title
  • " >> dest/index.html + cat _header.html > dest/$file.html + sed 's/^# \(.*\)/

    \1<\/h2>/' $f >> dest/$file.html + echo "

+ + " >> dest/$file.html +done + +echo "
+ +" >> dest/index.html diff --git "a/itemy/spodnie-d\305\202ugie-158.md" "b/itemy/spodnie-d\305\202ugie-158.md" new file mode 100644 index 0000000..317ca83 --- /dev/null +++ "b/itemy/spodnie-d\305\202ugie-158.md" @@ -0,0 +1,3 @@ +# Spodnie długie 158cm + +Długie spodnie / bojówki na wysokość 158cm diff --git "a/itemy/spodnie-d\305\202ugie-164.md" "b/itemy/spodnie-d\305\202ugie-164.md" new file mode 100644 index 0000000..715a17a --- /dev/null +++ "b/itemy/spodnie-d\305\202ugie-164.md" @@ -0,0 +1,3 @@ +# Spodnie długie 164cm + +Długie spodnie / bojówki na wysokość 164cm diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..13e54ec Binary files /dev/null and b/logo.png differ diff --git a/logo.svg b/logo.svg new file mode 100644 index 0000000..805681c --- /dev/null +++ b/logo.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..8cc42e5 --- /dev/null +++ b/style.css @@ -0,0 +1,13 @@ +body { + max-width: 80ex; + margin: auto; +} + +footer { + margin-bottom: 2em; +} + +.list { + padding: 1ex; + border: 1px solid gray; +} -- cgit 1.4.1