- commit
- 4f2084275e9234070beba31b5a8f6dd9ca172f63
- parent
- 77ac2f47139450dbbd21d65d8c5182374029affb
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2025-02-07 11:22
add some rel semantics for links
Diffstat
M | templates/video.html | 4 | ++-- |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/video.html b/templates/video.html
@@ -13,7 +13,7 @@ 13 13 {% endfor %} 14 14 </video> 15 15 {% if next %}16 -1 <a href="/video/{{ next }}/" class="next">Next episode</a>-1 16 <a href="/video/{{ next }}/" class="next" rel="next">Next episode</a> 17 17 {% endif %} 18 18 </div> 19 19 <div class="wrapper"> @@ -33,7 +33,7 @@ 33 33 {% if tags %} 34 34 <ul class="tags"> 35 35 {% for tag in tags %}36 -1 <li class="tag"><a href="/search/?q=tags: {{ tag }}">#{{ tag }}</a></li>-1 36 <li class="tag"><a href="/search/?q=tags: {{ tag }}" rel="tag">#{{ tag }}</a></li> 37 37 {% endfor %} 38 38 </ul> 39 39 {% endif %}