Skip to content

Commit

Permalink
Added first draft of the changes/blog page
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Sep 18, 2024
1 parent 1af8ea7 commit f126647
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions dynamic-site/templates/en/web/Ged2site/Display/changes.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Changes in [% SiteTitle.join(' ') %]</title>
<meta http-equiv="Content-Language" content="English">
<!--
<meta name="msvalidate.01" content="deadbeef" />
-->
<link rel="stylesheet" href="/css/web.css" type="text/css" media="screen">
<meta name="description" content="Changes in [% SiteTitle.join(' ') %] - A ged2site webpage">
<meta name="Copyright" content="Copyright (C) 2024 Nigel Horne">
</head>
<body>
<div id="header_container">
<center>
<h1>Changes in [% SiteTitle.join(' ') %]</h1>
[% IF error %]
<p><font color="red" size="+2">[% error %]</font></p>
[% END %]
</center>
</div>
<div id="container">
<center>
[ <a href="?page=people&amp;home=1">Home</a> ] |
[ <a href="?page=censuses">Census Index</a> ] |
[ <a href="?page=surnames">Surname Index</a> ] |
[ <a href="?page=history">Family History</a> ] |
[ <a href="?page=calendar">Calendar</a> ] |
[ <a href="?page=censuses">Censuses</a> ] |
[ <a href="?page=graphs">Analytics</a> ] |
[ <a href="?page=reports">Reports</a> ] |
[ <a href="/visjs.html">Timeline</a> ]
</center>
[% IF changes %]
<p>
Changes/blog
</p>
<br>
<ul id="nav">
[% FOREACH change IN changes %]
<li>
<p>
<a href="?page=people&amp;entry=[%- change.xref %]">[% change.xref %]</a>
<p>
</li>
[% END %]
</ul>
[% ELSE %]
<p>There are no changes in your family tree.</p>
[% END %]
</div>
<p align="right">
<i>
This website was generated by <a href="//github.com/nigelhorne/ged2site">ged2site</a>.
[% IF updated %]
[% USE date %]
Last updated on [% date.format(time = updated, format = '%d %b %Y', locale = lingua.language_code_alpha2) %]
[% END %]
</i>
</p>
</body>
</html>

0 comments on commit f126647

Please sign in to comment.