diff options
author | Daniil Baturin <daniil@baturin.org> | 2021-05-03 21:09:44 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2021-05-03 21:09:44 +0700 |
commit | d1af7665229fccb9ea843bc124bbe33098c9dc4a (patch) | |
tree | e6dc23f2e47c1cd195346cd92d936125e622b477 /scripts | |
parent | de04f3dd2410c34b0f862c7391ed411d2acff0ce (diff) | |
download | community.vyos.net-d1af7665229fccb9ea843bc124bbe33098c9dc4a.tar.gz community.vyos.net-d1af7665229fccb9ea843bc124bbe33098c9dc4a.zip |
Correct HTML element nesting for the "here link".
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/list-snapshots.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/list-snapshots.py b/scripts/list-snapshots.py index 96339e7..b298a5a 100755 --- a/scripts/list-snapshots.py +++ b/scripts/list-snapshots.py @@ -68,7 +68,7 @@ snapshots = natural_sort(snapshots, reverse=True) tmpl = jinja2.Template(""" {% for s in snapshots %} - <a href="#{{s.name}}">#</a><h3 id="{{s.name}}">{{s.name}}</h3> + <h3 id="{{s.name}}"><a href="#{{s.name}}">#</a> {{s.name}}</h3> <ul> {% for f in s.files %} <li><a href="{{f.link}}">{{f.name}} ({{f.platform}})</a></li> |