-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added first draft of the changes/blog page
- Loading branch information
1 parent
1af8ea7
commit f126647
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
63 changes: 63 additions & 0 deletions
63
dynamic-site/templates/en/web/Ged2site/Display/changes.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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&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&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> |