-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
35 lines (23 loc) · 725 Bytes
/
Copy pathcv.html
File metadata and controls
35 lines (23 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<!--
Copyright Mohamed Ryadh DAHIMENE - 2014
This simple jquey script load the content of the cv in md format into the xmp tags, then loads strapdown.js to parse the markdown to html
This way I have to maintain only the markdown version of my cv.
-->
<title>Curriculum Vitae</title>
<head>
<!--<script src="http://strapdownjs.com/v/0.2/strapdown.js"></script>-->
<script src="js/jquery-1.11.0.min.js"></script>
<script>
function runScript() {
$.getScript("js/strapdown.js");
}
$(function(){
$("xmp").load('cv_dahimene.md', runScript());
});
</script>
</head>
<xmp theme="cosmo" style="display:none;">
</xmp>
</html>