-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathroutes.yaml
36 lines (32 loc) · 894 Bytes
/
routes.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
routes:
/:
controller: channel
template: index
filter: primary_tag:[clanky,slovnik]
order: featured DESC, published_at DESC
/registrace/: members/signup
/prihlaseni/: members/signin
/ucet/: members/account
collections:
/clanky/:
permalink: /clanky/{slug}/
template: index
filter: primary_tag:clanky
order: featured DESC, published_at DESC
data: tag.clanky
/newsletter/:
permalink: /newsletter/{slug}/
template: index
filter: primary_tag:newsletter
order: published_at DESC
data: tag.newsletter
/slovnik/:
permalink: /slovnik/{slug}/
template: glossary
filter: primary_tag:slovnik
limit: 10000 # `all` is disabled in production, and we need all posts. We hardly ever reach this number of glossary items.
order: title ASC
data: tag.slovnik
taxonomies:
tag: /tema/{slug}/
author: /autor/{slug}/