Explorar el Código

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 hace 5 años
padre
commit
047d6f3a1e
Se han modificado 2 ficheros con 30 adiciones y 0 borrados
  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>