From fa0493ae05d428b898205a2adf6c10bef23f7803 Mon Sep 17 00:00:00 2001 From: esquizo Date: Fri, 13 Mar 2026 00:02:24 -0300 Subject: primeiro commit --- Makefile | 13 +++++++++++++ blog/index.md | 6 ++++++ blog/test.md | 4 ++++ index.md | 6 ++++++ static/esquizo.png | Bin 0 -> 234054 bytes static/style.css | 26 ++++++++++++++++++++++++++ templates/base.m4 | 25 +++++++++++++++++++++++++ 7 files changed, 80 insertions(+) create mode 100644 Makefile create mode 100644 blog/index.md create mode 100644 blog/test.md create mode 100644 index.md create mode 100644 static/esquizo.png create mode 100644 static/style.css create mode 100644 templates/base.m4 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..96f8b0a --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +PAGES=index.html\ + blog/index.html\ + blog/test.html + +all: $(PAGES) + +clean: + rm -f $(PAGES) + +%.html: %.md templates/base.m4 + m4 -DPAGECONTENT="$$(markdown $<)" templates/base.m4 > $@ + +.PHONY: all clean diff --git a/blog/index.md b/blog/index.md new file mode 100644 index 0000000..0d4a713 --- /dev/null +++ b/blog/index.md @@ -0,0 +1,6 @@ +Lista de blogs + + +- [Test](test.html) +- [Voltar](/) + diff --git a/blog/test.md b/blog/test.md new file mode 100644 index 0000000..475525b --- /dev/null +++ b/blog/test.md @@ -0,0 +1,4 @@ +# Test + +Test test test +Puta merda, que teste! diff --git a/index.md b/index.md new file mode 100644 index 0000000..d6efc6b --- /dev/null +++ b/index.md @@ -0,0 +1,6 @@ +Site sobre minhas ideias e coisas malucas que eu queria falar na interwebzz. +Poderia ser em uma rede social? Poderia. Mas onde que estaria a porra da graça? +Internet é pra ser livre, não presa a umas poucas empresas. + +_não sou realmente esquizofrenico..._ +_eu acho..._ diff --git a/static/esquizo.png b/static/esquizo.png new file mode 100644 index 0000000..dd9a6af Binary files /dev/null and b/static/esquizo.png differ diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..bd2575b --- /dev/null +++ b/static/style.css @@ -0,0 +1,26 @@ +body { + color: white; + background-color: black; + + min-width: 800px; + width: 70%; + margin: auto; +} + +.title { + display: flex; +} + +.title h1 { + display: inline; + margin: 1px; +} + +.title h2 { + margin: 1px; +} + +.esquizo { + width: 100px; + display: inline; +} diff --git a/templates/base.m4 b/templates/base.m4 new file mode 100644 index 0000000..1005089 --- /dev/null +++ b/templates/base.m4 @@ -0,0 +1,25 @@ + + + Esquizo + + + + + +
+ +
+

esquizo.net

+

Centro das verdades reveladas pelas vozes da minha cabeça

+
+
+ + +
+ PAGECONTENT +
+ + -- cgit v1.2.3