]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/wiki/watchlist.html
wiki: Implement embedding images with {{...}} syntax
[ipfire.org.git] / src / templates / wiki / watchlist.html
CommitLineData
2f23c558
MT
1{% extends "base.html" %}
2
3{% block title %}{{ _("Your Watchlist") }}{% end block %}
4
5{% block sidebar %}
6 {% set help = backend.wiki.get_page("/wiki/watchlist") %}
7
8 {% if help %}
9 {% raw help.html %}
10 {% end %}
11{% end block %}
12
13{% block main %}
14 <div class="card">
15 <div class="card-body">
16 <h5>{{ _("Your Watchlist") }}</h5>
17
18 {% module WikiList(pages) %}
19 </div>
20 </div>
21{% end block %}