html: HTML page build

This commit is contained in:
Cyrille L 2022-11-23 17:36:53 +01:00
parent 7b38db9f37
commit c7893a2922
1 changed files with 5 additions and 5 deletions

View File

@ -129,30 +129,30 @@ def html_main_page(wip_html):
' <div id="footer-about">\n' + \
' <ul class="site-list">\n' + \
' <li class="site-list">URL:\n' + \
' <a class="site_url"\n' + \
' <a id="site_url"\n' + \
' href="/">\n' + \
' title="%s">%s</a>\n'%(
domain.domain_title, domain.domain_url
) + \
' </li>\n' + \
' <li class="site-list">License: \n' + \
' <a href="mailto:%s"\n'%domain.domain_mail +\
' <a id="site-mail" href="mailto:%s"\n'%domain.domain_mail +\
' title="Contact %s">%s</a>\n'%(
domain.domain_title, domain.domain_mail
) + \
' </li>\n' + \
' <li class="site-list">Copyright: \n' + \
' <a href="%s"\n'%domain.domain_lic_url +\
' <a id="licurl" href="%s"\n'%domain.domain_lic_url +\
' title="License informations">%s</a>\n'%(
domain.domain_license
) + \
' </li>\n' + \
' <li class="site-list"><abbr title="Really Simple Syndication">RSS/<abbr>: \n' + \
' <a href="/rss.xml"\n' +\
' <a id="site-rss" href="/rss.xml"\n' +\
' title="Syndication %s">/rss.xml</a>\n'%domain.domain_title + \
' </li>\n' + \
' <li class="site-list">Generator: \n' + \
' <a href="%s"\n' +\
' <a id="tytogen" href="%s"\n'%tytogen +\
' type="application/rss+xml"\n' + \
' title="Website generated by Tyto - Littérateur">Tyto - Littérateur</a>\n' + \
' </li>\n' + \