forked from Deuxfleurs/site
parent
ef35a40059
commit
2ea473d3bd
@ -1,2 +1,3 @@ |
||||
static/ |
||||
node_modules/ |
||||
*.swp |
||||
|
@ -1,11 +0,0 @@ |
||||
### Statuts de l'association |
||||
|
||||
Depuis janvier 2020, Deuxfleurs est constitué en association loi 1901. |
||||
Vous trouverez [ici](/Documentation/Association/Statuts/) les statuts de l'association. |
||||
|
||||
### Comptes rendus d'AG |
||||
|
||||
Les comptes-rendus d'AG sont disponibles aux liens suivants: |
||||
|
||||
- [13 janvier 2020 (AG constitutive)](/Documentation/Association/AG1/) |
||||
|
@ -1,14 +0,0 @@ |
||||
extends ../_layout.pug |
||||
|
||||
prepend root |
||||
- title = element.nice_path[element.nice_path.length - 1] |
||||
|
||||
block content |
||||
.container.spacing |
||||
nav |
||||
strong |
||||
a(href="/Documentation") Documentation |
||||
+menu(root.children.find(e => e.nice_name == "Documentation")) |
||||
|
||||
main.spacing |
||||
!= markdown |
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
@ -0,0 +1,7 @@ |
||||
extends ./_layout.pug |
||||
|
||||
prepend root |
||||
- title = element.nice_path[element.nice_path.length - 1] |
||||
|
||||
block content |
||||
!= markdown |
@ -1,7 +1,13 @@ |
||||
mixin menu(o) |
||||
ul |
||||
each val in o.children |
||||
- if (val.type == 'folder') |
||||
- if (val.type == 'folder' && val.tags.includes('document')) |
||||
li |
||||
a(href=val.url)= val.nice_name |
||||
- if (val.tags.includes('has_index')) |
||||
a(href=val.url)= val.nice_name |
||||
- else |
||||
span= val.nice_name |
||||
+menu(val) |
||||
- else if (val.type == 'file' && val.tags.includes('document') && !val.tags.includes('is_index')) |
||||
li |
||||
a(href=val.url)= val.nice_name |
||||
|
Loading…
Reference in new issue