more photos

This commit is contained in:
2020-02-27 23:39:05 +00:00
parent 6c4e8ab6b7
commit acf41aade9
17 changed files with 82 additions and 33 deletions

View File

@@ -1,11 +1,15 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CUCC Expo member: Becka Lawson</title>
<link rel="stylesheet" type="text/css" href="../../css/main2.css" />
</head>
<body>
<h2 id="tophead">CUCC Expedition Handbook</h2>
<h1>Becka Lawson</h1>
<p><img class="onleft" src="../i/beckal.jpg" width="282" height="509"
alt="" />
<b>Becka Lawson</b>, (St. Catherine's 1986-89, Treasurer 1987-88)<br />
@@ -20,16 +24,9 @@ joined <span lang="de"><a href="http://arge.itvd.uni-stuttgart.de/"
lang="de">Arbeitsgemeinschaft H&ouml;hle und Karst Grabenstetten
e.V.</a></span> on trips in 1998 and 1999, working in the <a
href="../../1623/41.htm">Stellerweg system</a>.</p>
<img class="onright" src="../i/becka9.jpg" alt="" />
<hr style="clear: both" /><p class="caption">Photo &copy; ???</p>
<hr />
<ul>
<li>Back to table of <a href="../index.htm">expo members</a></li>
<li>Back to <a href="../../index.htm">Expedition Intro page</a>
<ul>
<li><a href="../../infodx.htm"><b>Index</b> to Expo</a> information pages</li>
</ul></li>
<li>Back to <a href="../../../index.htm">CUCC Home page</a></li>
</ul>
</body>
</html>

View File

@@ -1,11 +1,16 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CUCC Expo member: Julian Todd</title>
<link rel="stylesheet" type="text/css" href="../../css/main2.css" />
</head>
<body>
<h2 id="tophead">CUCC Expedition Handbook</h2>
<h1>Julian Todd</h1>
<img class="onright" src="../i/julian.jpg" alt="Julian Todd 2018" />
<p><img class="onleft" src="../i/jtodd.jpg" width="180" height="200"
alt="" />
<b>Julian Todd</b>, (Corpus Christi 1986-89)<br />
@@ -13,18 +18,9 @@ Expedition 1989, 1990, 1991, 1993, 1996 and 1999 - all in the
<span lang="de">Kaninchenh&ouml;hle</span> years. Julian also has another
reason for visiting the Loser - its excellent hang-gliding.<br />Photo taken
outside the entrance to Daren Cilau.</p>
<hr style="clear: both" /><p class="caption">Photo &copy; , 19</p>
<!-- Photo scanned on Nikon Coolscan II -->
<hr />
<!-- LINKS -->
<ul id="links">
<li>Back to table of <a href="../index.htm">expo members</a></li>
<li>Back to <a href="../../index.htm">Expedition Intro page</a>
<ul>
<li><a href="../../infodx.htm"><b>Index</b> to Expo</a> information pages</li>
</ul></li>
<li>Back to <a href="../../../index.htm">CUCC Home page</a></li>
</ul>
</body>
</html>

56
folk/l/markshinwell.htm Normal file
View File

@@ -0,0 +1,56 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CUCC Expo member: Mark Shinwell</title>
<link rel="stylesheet" type="text/css" href="../../css/main2.css" />
</head>
<body>
<h2 id="tophead">CUCC Expedition Handbook</h2>
<h1>Mark Shinwell</h1>
<img class="onleft" src="../i/marks.jpg" alt="Julian Todd 2018" />
<p><img class="onright" src="../i/shinwell.jpg" width="180" height="200"
alt="" />
<b>Mark Shinwell</b>.</p>
<pre><code>
open Core
type xml =
| Element of Xmlm.tag * xml list
| Data of string
(*
let rec dump_xml = function
| Element (((_, name), _attrs), xmls) ->
Printf.eprintf "Element %s:\n" name;
dump_xmls xmls;
Printf.eprintf "Element %s ends.\n" name
| Data d -> Printf.eprintf "Data %s\n" d
and dump_xmls xmls =
List.iter xmls ~f:dump_xml
*)
let input_xml file =
let chan = In_channel.create file in
let el tag children = Element (tag, children) in
let data str = Data str in
try
let input = Xmlm.make_input (`Channel chan) in
let _dtd, xml = Xmlm.input_doc_tree ~el ~data input in
In_channel.close chan;
xml
with Xmlm.Error ((line, column), error) ->
Printf.eprintf "XML parsing error (line %d, column %d): %s\n"
line column
(Xmlm.error_message error);
failwith "Cannot parse GPX file"
</code></pre>
<hr style="clear: both" /><p class="caption">Photo caption</p>
<hr />
</body>
</html>