Parcourir la source

Add HTML files for both resume and CV

Like index.html, they just redirect to the PDFs, since decent HTML
output is not really feasible.
Ryan C. Thompson il y a 5 ans
Parent
commit
047d6f3a1e
2 fichiers modifiés avec 30 ajouts et 0 suppressions
  1. 15 0
      ryan_thompson_cv.html
  2. 15 0
      ryan_thompson_resume.html

+ 15 - 0
ryan_thompson_cv.html

@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <title>Ryan C. Thompson, Ph. D.</title>
+    <meta http-equiv="Refresh" content="0; url=ryan_thompson_cv.pdf">
+  </head>
+  <body>
+    <div id="parent">
+      <div id="wrapper" style="position:relative">
+        <iframe style="position:absolute;top:0px;width:100%;height:100vh;" frameborder="0" src="ryan_thompson_cv.pdf">
+        </iframe>
+      </div>
+    </div>
+  </body>
+</html>

+ 15 - 0
ryan_thompson_resume.html

@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <title>Ryan C. Thompson, Ph. D.</title>
+    <meta http-equiv="Refresh" content="0; url=ryan_thompson_resume.pdf">
+  </head>
+  <body>
+    <div id="parent">
+      <div id="wrapper" style="position:relative">
+        <iframe style="position:absolute;top:0px;width:100%;height:100vh;" frameborder="0" src="ryan_thompson_resume.pdf">
+        </iframe>
+      </div>
+    </div>
+  </body>
+</html>