feat(tags): this adds support for post, link, book, show and movie tags with a tag list view and per tag pages
This commit is contained in:
parent
3d866262ca
commit
6fdc0b56b9
35 changed files with 500 additions and 70 deletions
|
@ -25,9 +25,7 @@ ErrorDocument 404 /404/index.html
|
|||
ErrorDocument 429 /429/index.html
|
||||
ErrorDocument 500 /500/index.html
|
||||
|
||||
# media routing
|
||||
|
||||
# media routing
|
||||
# dynamic page routing
|
||||
|
||||
## artists
|
||||
RewriteRule ^music/artists/([^/]+)/?$ music/artists/index.php [L]
|
||||
|
@ -46,6 +44,9 @@ RewriteRule ^watching/shows/([^/]+)/?$ watching/shows/index.php [L]
|
|||
## genres
|
||||
RewriteRule ^music/genres/([^/]+)/?$ music/genres/index.php [L]
|
||||
|
||||
## tags
|
||||
RewriteRule ^tags/([^/]+)(?:/([0-9]+))?/?$ tags/index.php [L]
|
||||
|
||||
{% for redirect in redirects -%}
|
||||
Redirect {{ redirect.status_code | default: "301" }} {{ redirect.source_url }} {{ redirect.destination_url }}
|
||||
{% endfor -%}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue