Skip to content

Commit 77daa00

Browse files
author
Robbie McCorkell
committed
Added cv page javascript and updated CV
1 parent 2b980f4 commit 77daa00

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

CV/Robert-McCorkell-CV.pdf

85.9 KB
Binary file not shown.

CV/Robert_McCorkell-CV.pdf

-84.5 KB
Binary file not shown.

css/main.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,22 @@ body {
8787

8888
}
8989

90+
@media print {
91+
#navigation {
92+
display: none;
93+
}
94+
95+
.no-print {
96+
display: none;
97+
}
98+
99+
a[href]:after {
100+
content: none;
101+
}
102+
button {
103+
display: none;
104+
}
105+
}
106+
90107

91108

cv.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="stylesheet" href="css/fonts/fonts.css" type="text/css" media="screen">
1919

2020
<!-- Custom Styles -->
21-
<link rel="stylesheet" href="css/main.css" type="text/css" media="screen">
21+
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
2222

2323
</head>
2424
<body>
@@ -59,7 +59,7 @@ <h4 class="col-md-3 date">07/2013 - 05/2014</h4>
5959

6060
<div class="content-item">
6161
<div class="row">
62-
<h4 class="col-md-9">Decibel Music Systems Ltd – Software Development Intern (<a href="decibel-reference/Decibel_Reference-Robbie_McCorkell.pdf">Reference Letter</a>)</h4>
62+
<h4 class="col-md-9">Decibel Music Systems Ltd – Software Development Intern<span class="no-print"> (<a href="decibel-reference/Decibel_Reference-Robbie_McCorkell.pdf">Reference Letter</a>)</span></h4>
6363
<h4 class="col-md-3 date">07/2012 – 09/2012</h4>
6464
</div>
6565

@@ -105,7 +105,7 @@ <h4 class="col-md-3 date">10/2009 – 06/2013</h4>
105105
<li>1st class master's degree in physics with one year studying in New Zealand.</li>
106106
<li>Master's thesis involved specialisation in condensed matter physics focusing on the super-material Graphene.</li>
107107
<li>Co-developed a spray-on version of the material GraphExeter developed at Exeter University for application directly to fabrics and glass.</li>
108-
<li>GraphExeter could potentially revolutionise the creation of wearable electronic devices (<a href="http://www.bbc.co.uk/news/uk-england-18302843">BBC report</a>, <a href="http://www.bbc.co.uk/news/uk-england-devon-18302848">video report</a>).</li>
108+
<li>GraphExeter could potentially revolutionise the creation of wearable electronic devices <span class="no-print">(<a href="http://www.bbc.co.uk/news/uk-england-18302843">BBC report</a>, <a href="http://www.bbc.co.uk/news/uk-england-devon-18302848">video report</a>)</span>.</li>
109109
</ul>
110110
</div>
111111
</div>
@@ -142,7 +142,7 @@ <h3>Skills</h3>
142142
In approximate order of experience:
143143
<div class="content-item-content">
144144
<ul>
145-
<li>Languages - C#, HTML5, CSS3, Javascript, Java, Python, MATLAB.</li>
145+
<li>Languages - C#, HTML5, CSS3, Javascript, Java, Python, LaTeX, MATLAB.</li>
146146
<li>Frameworks - ASP.NET MVC, a custom JS MVC framework used at Bloom.fm, Blueprint, WPF.</li>
147147
<li>Tools - Microsoft Visual Studio, Adobe Photoshop, Mercurial, Redis, SQL, Eclipse, MATLAB.</li>
148148
<li>Operating Systems - Microsoft Windows, Apple OSX</li>
@@ -196,13 +196,15 @@ <h3>References</h3>
196196
</div>
197197
</div>
198198

199-
<h3 class="span-24" id="download"><a href="CV/Robert_McCorkell-CV.pdf">Download PDF</a></h3>
199+
<a class="download-button btn btn-default btn-lg" href="CV/Robert-McCorkell-CV.pdf">Download PDF</a>
200200
</div>
201201

202202
</div>
203203
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
204204
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
205205
<!-- Include all compiled plugins (below), or include individual files as needed -->
206206
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
207+
208+
<script src="js/cv.js"></script>
207209
</body>
208210
</html>

js/cv.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
$(document).ready(function() {
2+
$('button.download-button').click(function () {
3+
window.print();
4+
});
5+
});

0 commit comments

Comments
 (0)