Skip to content

Commit

Permalink
Initial commit. Most features should work fine by now.
Browse files Browse the repository at this point in the history
  • Loading branch information
biomadeira committed Oct 24, 2015
0 parents commit dcd8bc6
Show file tree
Hide file tree
Showing 19 changed files with 944 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
@@ -0,0 +1,8 @@
# OS X
.DS_Store

# Jekyll build
/_site/

#
.idea/
Empty file added CNAME
Empty file.
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2015 Fábio Madeira

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
39 changes: 39 additions & 0 deletions README.md
@@ -0,0 +1,39 @@

# Vitae

Personal homepage (curriculum vitae or resume) based on [João's](https://github.com/joaomoreno/resume).
Vitae is built with [skeleton](http://getskeleton.com/), powered by [Jekyll](http://jekyllrb.com/) and freely
hosted in [Github pages](https://pages.github.com/).


## View the live demo

[Vitae Live Demo](https://biomadeira.github.io/vitae)


## Screenshots

![resume page](https://raw.github.com/biomadeira/vitae/master/assets/images/vitae_theme_screen1.png)


## How to use it

Simply clone/fork this repository, and then run `jekyll serve` inside the directory.
Edit the site attributes in *_config.yml* and edit the various entries in *_includes/*.

## Thanks

A lot of the work had been already done by the Joao. Many thanks to him :)
Profile picture from [pexels](https://www.pexels.com/photo/portrait-black-african-ethnicity-person-9494/).


## Copyright & License

Copyright (C) 2015 - Released under the MIT License.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 changes: 28 additions & 0 deletions _config.yml
@@ -0,0 +1,28 @@
highlighter: pygments
markdown: rdiscount
rdiscount:
extensions: [smart]
permalink: /:title.html
paginate: 5
port: 4000
safe: true
url: http://biomadeira.github.io/vitae
author: Fábio Madeira

# edit this section with your information
baseurl: /
title: Chris Turner's Resume
name: Chris Turner
email: christurner@me.com
email_full: mailto:youremail@me.com
github: trending
twitter: twitter
tel: +44 7465 000000
tel_full: tel:+447465000000
google_maps: https://www.google.co.uk/maps/place/44+Perth+St,+Edinburgh,+Edinburgh+City+EH3+5BL
address: 44 Perth Street
postcode: EH3 5BL
city: Edinburgh
country: United Kingdom
google_analytics: UA-47728743-1

23 changes: 23 additions & 0 deletions _includes/education.html
@@ -0,0 +1,23 @@
<section class="thirteen columns">
<h1>Education</h1>
<article>
<header>
<h1>MSc in Advanced Computing</h1>
<span>University of Bristol</span>
<span><address>Bristol, UK</address><time>2011 to 2012</time></span>
</header>
<p>
<em>Thesis: Real-Time Context-Aware Compositing</em>
</p>
</article>
<article>
<header>
<h1>Major in Computer Systems Engineering</h1>
<span>University of Birmingham</span>
<span><address>Birmingham, UK</address><time>2007 to 2011</time></span>
</header>
<p>
<em>Dissertation: Digital Sound Synthesis</em>
</p>
</article>
</section>
46 changes: 46 additions & 0 deletions _includes/employment.html
@@ -0,0 +1,46 @@
<section class="thirteen columns">
<h1>Employment</h1>
<article>
<header>
<h1>Software Engineer</h1>
<span><address>Palo Alto, California, CA, USA</address><time>2015 to Present</time></span>
</header>
<p>As part of a highly talented UX design/development team, I support the development of photo-centric features,
such as a gesture-driven photo gallery and geographically clustered photo map. </p>
</article>
<article>
<header>
<h1>iOS Developer</h1>
<span><address>Stanford, Mexico City, CA, USA</address><time>2014</time></span>
</header>
<p>Completed bespoke iOS work for various clientes including: development of tutorials,
enterprise apps and augmented reality consulting.</p>
</article>
<article>
<header>
<h1>Teaching Assistant</h1>
<span><address>University of Bristol, Bristol, UK</address><time>2013 to 2014</time></span>
</header>
<p>Taught with <strong>Autodesk May</strong> and was point of contact for +100 students in the
'Character & Set Design" and "Animation Production" units.</p>
</article>
<article>
<header>
<h1>iOS Developer</h1>
<span><address>Basecamp Student Start-up, Bristol, UK</address><time>2013</time></span>
</header>
<p>Served as a technology consultant for new student start-ups and assisted in entrepreneurial events.
Developed native iOS apps for <strong>FWSim</strong> and <strong>PatchworkPie</strong>.
</p>
</article>
<article>
<header>
<h1>Web Developer</h1>
<span><address>Birmingham, UK</address><time>2007 to 2010</time></span>
</header>
<p>As a freelancer I developed websites for several clients using platforms such as <strong>wordpress</strong> and
<strong>Drupal</strong>. Become proficient in using various HTML/CSS/Javascript frameworks as
well as PHP programming.
</p>
</article>
</section>
21 changes: 21 additions & 0 deletions _includes/initiatives.html
@@ -0,0 +1,21 @@
<section class="thirteen columns">
<h1>Initiatives</h1>
<article>
<header>
<h1>Graduate Summer Student</h1>
<span><address>Stanford University, Stanford, CA, USA</address><time>2013</time></span>
</header>
<p>
Courses: Client-side Internet Technology, Computer Graphics & Imaging, Interactive Devie Design
</p>
</article>
<article>
<header>
<h1>Exhibitor & Student Volunteer</h1>
<span><address>SIGGRAPH, Anaheim, CA, USA</address><time>2013</time></span>
</header>
<p>
Poster: Contex-Aware Compositing using an Interactive Mobile Tool.
</p>
</article>
</section>
6 changes: 6 additions & 0 deletions _includes/interests.html
@@ -0,0 +1,6 @@
<section class="thirteen columns">
<h1>Interests &amp; Hobbies</h1>
<article>
<p>Music, Movies, Tennis, Travelling, Cooking.</p>
</article>
</section>
12 changes: 12 additions & 0 deletions _includes/skills.html
@@ -0,0 +1,12 @@
<section class="thirteen columns">
<h1>Programming Skills</h1>
<article>
<header>
<h1>Software engineering & web development</h1>
</header>
<p>
Extensive experience (TDD and Agile practices) in various programming languages and frameworks including:
C/C++ & Objective-C, Java, Python, PHP, HTML/CSS & Javascript.
</p>
</article>
</section>
70 changes: 70 additions & 0 deletions _layouts/layout.html
@@ -0,0 +1,70 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.name }}'s Résumé">
<meta name="author" content="{{ site.name }} @{{ site.twitter }}">

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

<link rel="stylesheet" href="{{ site.baseurl }}static/css/base.css">
<link rel="stylesheet" href="{{ site.baseurl }}static/css/skeleton.css">
<link rel="stylesheet" href="{{ site.baseurl }}static/css/layout.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">

<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<link rel="shortcut icon" href="{{ site.baseurl }}static/img/favicon.ico">
<!-- <link rel="apple-touch-icon" href="static/img/me-icon-57.png"> -->
<!-- <link rel="apple-touch-icon" sizes="72x72" href="static/img/me-icon-72.png"> -->
<!-- <link rel="apple-touch-icon" sizes="114x114" href="static/img/me-icon-114.png"> -->
</head>
<body>
<div class="container">
<header class="three columns">
<img src="{{ site.baseurl }}static/img/profile.png" class="me">
<h1>{{ site.name }}</h1>
<p>
<a href="{{ site.tel_full }}">{{ site.tel }}</a>
</p>
<address>
<a href="{{ site.google_maps }}">
{{ site.address }}<br/>
{{ site.postcode }}<br/>
{{ site.city }}<br/>
{{ site.country }}
</a>
</address>
<p>
<a href="{{ site.email_full }}">{{ site.email }}</a><br/>
<a href="https://github.com/{{ site.github }}"><i class="fa fa-github"></i> Github</a> /
<a href="https://twitter.com/{{ site.twitter }}"><i class="fa fa-twitter"></i> Twitter</a>
</p>
</header>
<div class="thirteen columns clearfix">

{{ content }}

<footer class="thirteen columns">
<p>© All rights reserved. Powered by <a href="http://jekyllrb.com/">Jekyll</a> and
<a href="http://www.github.com/biomadeira/vitae">vitae</a> with ♥</p>
</footer>
</div>
</div>

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ site.google_analytics }}']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
Binary file added assets/images/screen1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/vitae_theme_screen1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions index.html
@@ -0,0 +1,13 @@
---
layout: layout
---

{% include employment.html %}

{% include education.html %}

{% include skills.html %}

{% include initiatives.html %}

{% include interests.html %}
2 changes: 2 additions & 0 deletions robots.txt
@@ -0,0 +1,2 @@
User-agent: *
Disallow: /

0 comments on commit dcd8bc6

Please sign in to comment.