summaryrefslogtreecommitdiffstats
path: root/footer.rb
blob: 9ebfcd03f2357707f2d037d309a3de6f35158d83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# encoding: utf-8
def footer_tpe(derniere_maj, derniere_maj_form)
	derniere_maj_form.force_encoding('utf-8')
	html = <<HTML_TPE
		<footer>
HTML_TPE
	if derniere_maj and derniere_maj_form
		html = html + <<HTML_TPE
			<time datetime="#{derniere_maj}" pubdate="pubdate">Dernière édition le #{derniere_maj_form}.</time><br />
HTML_TPE
	end
	html = html + <<HTML_TPE
			Site web propulsé par <a href="http://piernov.org/git/RuDynFrame">RuDynFrame</a> - <a href="https://piernov.org/">//piernov</a>. - Contact : <a href="mailto:postmaster@tpetoutfait.com">postmaster@tpetoutfait.com</a>.<br />
			Cette œuvre est mise à disposition selon les termes de la <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/fr/">Licence Creative Commons Attribution - Partage dans les Mêmes Conditions 3.0 France</a>.<br />
			<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/fr/"><img alt="Licence Creative Commons" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/fr/80x15.png" /></a>
		</footer>
	</body>
</html>
HTML_TPE
	return html
end