Commit inicial
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
public/*
|
||||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "themes/terminal"]
|
||||||
|
path = themes/terminal
|
||||||
|
url = https://github.com/panr/hugo-theme-terminal.git
|
||||||
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
||||||
12
config.yaml
Normal file
12
config.yaml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
baseURL: https://lajuntament.space/
|
||||||
|
languageCode: en-us
|
||||||
|
title: L'Ajuntament
|
||||||
|
|
||||||
|
theme: terminal
|
||||||
|
|
||||||
|
params:
|
||||||
|
themeColor: green # ["orange", "blue", "red", "green", "pink"]
|
||||||
|
fullWidthTheme: false
|
||||||
|
centerTheme: true
|
||||||
|
logo:
|
||||||
|
logoText: L'Ajuntament
|
||||||
27
content/_index.org
Normal file
27
content/_index.org
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
#+TITLE: L'Ajuntament
|
||||||
|
|
||||||
|
* Aquesta és la pàgina de l'ajuntament
|
||||||
|
Això és l'Ajuntament oficial a l'ombra! Ben aviat serem a tot el poble, i als vostres cors!
|
||||||
|
|
||||||
|
** Un subtítol
|
||||||
|
Sabem fer moltes coses! Per exemple: /Text torçat/ Uau! Com mola!
|
||||||
|
|
||||||
|
#+attr_html: alt: El Marc i el Nil :width 800
|
||||||
|
#+caption: El Marc i el Nil!
|
||||||
|
[[/img/el_marc_i_el_nil.gif]]
|
||||||
|
|
||||||
|
* Som uns hackers
|
||||||
|
Una miqueta de codi
|
||||||
|
#+begin_src python
|
||||||
|
import random
|
||||||
|
import time
|
||||||
|
|
||||||
|
MEMBRES = ['Marc', 'Nil']
|
||||||
|
|
||||||
|
def un_membre():
|
||||||
|
return random.choice(MEMBRES)
|
||||||
|
|
||||||
|
print(f"El jefe de l'Ajuntament és...")
|
||||||
|
time.sleep(1)
|
||||||
|
print(un_membre())
|
||||||
|
#+end_src
|
||||||
BIN
static/img/el_marc_i_el_nil.gif
Normal file
BIN
static/img/el_marc_i_el_nil.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.7 MiB |
1
themes/terminal
Submodule
1
themes/terminal
Submodule
Submodule themes/terminal added at 2b0406b7a4
Reference in New Issue
Block a user