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
|
@ -5,3 +5,11 @@
|
|||
<meta property="og:image" content="<?= htmlspecialchars("{{ globals.cdn_url }}" . ($ogImage ?? '{{ ogImage }}'), ENT_QUOTES, 'UTF-8') ?>" />
|
||||
<meta property="og:url" content="<?= htmlspecialchars($fullUrl ?? '{{ fullUrl }}', ENT_QUOTES, 'UTF-8') ?>" />
|
||||
<link rel="canonical" href="<?= htmlspecialchars($fullUrl ?? '{{ fullUrl }}', ENT_QUOTES, 'UTF-8') ?>" />
|
||||
<?php if (!empty($pagination)): ?>
|
||||
<?php if ($pagination['href']['next']): ?>
|
||||
<link rel="next" href="<?= $pagination['href']['next'] ?>">
|
||||
<?php endif; ?>
|
||||
<?php if ($pagination['href']['previous']): ?>
|
||||
<link rel="prev" href="<?= $pagination['href']['previous'] ?>">
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue