Corrected minor template errors
[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 <!-- Career objectives -->
43 <h2>Career Objectives</h2>
44 <h3>Short Term Objectives</h3>
45 <ul>
46 ${shortterm}
47 </ul>
48 <h3>Long Term Goals</h3>
49 <ul>
50 ${longterm}
51 </ul>
52
53 <!-- Skill sets -->
54 <h2>Skill Sets</h2>
55 <dl>
56 ${skills}
57 </dl>
58
59 <!-- Professional history/experience -->
60 <h2>Professional experience</h2>
61 ${profession}
62
63 <!-- Educational qualifications -->
64 <h2>Educational qualifications</h2>
65 <table class="education">
66 <thead>
67 <th>Qualification/Degree</th>
68 <th>Month &amp; year of passing</th>
69 <th>Name of Institution</th>
70 <th>University</th>
71 <th>Class/Grade</th>
72 <th>Percentage</th>
73 </thead>
74 <tbody>
75 ${education}
76 </tbody>
77 </table>
78
79 <h2>Languages known</h2>
80 <ul>
81 ${languages}
82 </ul>
83
84 <h2>Contact information</h2>
85 <table class="contact">
86 <tr>
87 <td><b>Residential address</b></td>
88 <td>${street}, <br />${area},<br /><b>${city} - ${areacode}</b></td>
89 </tr>
90 <tr>
91 <td><b>Landline</b></td>
92 <td>${countrycode_landline} - ${landline}</td>
93 </tr>
94 <tr>
95 <td><b>Mobile</b></td>
96 <td>${countrycode_mobile} - ${mobile}</td>
97 </tr>
98 <tr>
99 <td><b>Email address</b></td>
100 <td>${email}</td>
101 </tr>
102 </table>
103
104 <p class="miscinfo">${additionalinformation}</p>
105
106 <p class="signature">${lastname}, ${firstname}</p>
107 </body>
108 </html>