09c2aedf4cde43b666d4bc9f0700711b16edbef1
[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 .designation {font-size: 110%; font-variant: small-caps; }
21 dt { font-weight: bold; }
22 </style>
23 </head>
24 <body>
25 <h1>${title}</h1>
26
27 <!-- Personal information -->
28 <table class="personal">
29 <tr>
30 <td><b>Name</b></td>
31 <td>${nametitle} ${lastname}, ${firstname}</td>
32 </tr>
33 <tr>
34 <td><b>Date of birth</b></td>
35 <td>${dateofbirth}</td>
36 </tr>
37 <tr>
38 <td><b>Marital status</b></td>
39 <td>${maritalstatus}</td>
40 </tr>
41 </table>
42
43 <!-- Career objectives -->
44 <h2>Career Objectives</h2>
45 <h3>Short Term Objectives</h3>
46 <ul>
47 ${shortterm}
48 </ul>
49 <h3>Long Term Goals</h3>
50 <ul>
51 ${longterm}
52 </ul>
53
54 <!-- Skill sets -->
55 <h2>Skill Sets</h2>
56 <dl>
57 ${skills}
58 </dl>
59
60 <!-- Professional history/experience -->
61 <h2>Professional experience</h2>
62 ${profession}
63
64 <!-- Educational qualifications -->
65 <h2>Educational qualifications</h2>
66 <table class="education">
67 <thead>
68 <th>Qualification/Degree</th>
69 <th>Month &amp; year of passing</th>
70 <th>Name of Institution</th>
71 <th>University</th>
72 <th>Class/Grade</th>
73 <th>Percentage</th>
74 </thead>
75 <tbody>
76 ${education}
77 </tbody>
78 </table>
79
80 <h2>Languages known</h2>
81 <ul>
82 ${languages}
83 </ul>
84
85 <h2>Contact information</h2>
86 <table class="contact">
87 <tr>
88 <td><b>Residential address</b></td>
89 <td>${street}, <br />${area},<br /><b>${city} - ${areacode}</b></td>
90 </tr>
91 <tr>
92 <td><b>Landline</b></td>
93 <td>${countrycode_landline} - ${landline}</td>
94 </tr>
95 <tr>
96 <td><b>Mobile</b></td>
97 <td>${countrycode_mobile} - ${mobile}</td>
98 </tr>
99 <tr>
100 <td><b>Email address</b></td>
101 <td>${email}</td>
102 </tr>
103 </table>
104
105 <p class="miscinfo">${additionalinformation}</p>
106
107 <p class="signature">${lastname}, ${firstname}</p>
108 </body>
109 </html>