aboutsummaryrefslogtreecommitdiffstats
path: root/roles/syncthing/templates/var/www/html/index.html.j2
blob: 63944f5fe5b7c4a6846dbe114a602f05af5e3535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang='en'>
 <head>
  <title>Syncthing</title>
  <meta charset='utf-8'>
 </head>
 <body>
  <h1>Choose your username.</h1>
  <ul>
{% for user in syncthing_users.keys() %}
   <li><a href="/{{ user }}/">{{ user }}</a></li>
{% endfor %}
  </ul>
 </body>
</html>