Changes to templates to include e-mail as a link
[biacv.git] / templates / default_xhtml / main.tpl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6 <title>${title}</title>
7 <style>
8 body { background-color: white; color: black; font-family: serif; font-size: 100% }
9 table.personal { width: 100%; background-color: #eeeeee; font-size: 90% }
10 table.contact { width: 100% }
11 table.education { width: 100% }
12 .education thead { background-color: #eeeeee; }
13 ul { list-style-type: square; }
14 h1 { text-align: center; font-family: sans-serif; font-size: 210%; color: darkblue; font-variant: small-caps; }
15 h2 { border-bottom: solid; font-family: sans-serif; font-size: 140%; font-variant: small-caps; }
16 h3 { font-family: sans-serif; font-size: 110%; }
17 td { vertical-align: top; }
18 .miscinfo { text-align: center; font-size: 110%; font-style: italic; }
19 .signature { font-size: 120%; font-variant: small-caps; }
20 dt { font-weight: bold; }
21 </style>
22 </head>
23 <body>
24 <h1>${title}</h1>
25
26 <!-- Personal information -->
27 <table class="personal">
28 <tr>
29 <td><b>Name</b></td>
30 <td>${nametitle} ${lastname}, ${firstname}</td>
31 </tr>
32 <tr>
33 <td><b>Date of birth</b></td>
34 <td>${dateofbirth}</td>
35 </tr>
36 <tr>
37 <td><b>Marital status</b></td>
38 <td>${maritalstatus}</td>
39 </tr>
40 </table>
41
42 <!-- Profile highlights -->
43 <h2>Profile highlights</h2>
44 <ul>
45 ${profile}
46 </ul>
47
48 <!-- Career objectives -->
49 <h2>Career Objectives</h2>
50 <h3>Short Term Objectives</h3>
51 <ul>
52 ${shortterm}
53 </ul>
54 <h3>Long Term Goals</h3>
55 <ul>
56 ${longterm}
57 </ul>
58
59 <!-- Skill sets -->
60 <h2>Skill Sets</h2>
61 <dl>
62 ${skills}
63 </dl>
64
65 <!-- Professional history/experience -->
66 <h2>Professional experience</h2>
67 ${profession}
68
69 <!-- Educational qualifications -->
70 <h2>Educational qualifications</h2>
71 <table class="education">
72 <thead>
73 <th>Qualification/Degree</th>
74 <th>Month &amp; year of passing</th>
75 <th>Name of Institution</th>
76 <th>University</th>
77 <th>Class/Grade</th>
78 <th>Percentage</th>
79 </thead>
80 <tbody>
81 ${education}
82 </tbody>
83 </table>
84
85 <h2>Languages known</h2>
86 <ul>
87 ${languages}
88 </ul>
89
90 <h2>Contact information</h2>
91 <table class="contact">
92 <tr>
93 <td><b>Residential address</b></td>
94 <td>${street}, <br />${area},<br />${city} - ${areacode}<br /><b>${country}</b></td>
95 </tr>
96 <tr>
97 <td><b>Landline</b></td>
98 <td>${countrycode_landline} - ${landline}</td>
99 </tr>
100 <tr>
101 <td><b>Mobile</b></td>
102 <td>${countrycode_mobile} - ${mobile}</td>
103 </tr>
104 <tr>
105 <td><b>Email address</b></td>
106 <td><a href="mailto:${email}">${email}</a></td>
107 </tr>
108 </table>
109
110 <p class="miscinfo">${additionalinformation}</p>
111
112 <p class="signature">${lastname}, ${firstname}</p>
113 </body>
114 </html>