spike out more of resume stuffs

This commit is contained in:
Joel Glovier
2015-07-20 22:11:20 -04:00
parent 554944339b
commit b7e51c2249
16 changed files with 56 additions and 128 deletions
+2 -1
View File
@@ -1,2 +1,3 @@
# ghpages-resume
A simple GitHub Pages powered resume template.
A simple Jekyll + GitHub Pages powered resume template.
+5
View File
@@ -7,3 +7,8 @@ markdown: kramdown
sass:
sass_dir: _sass
style: compressed
# Resume settings
resume_name: "Homer J. Simpson"
resume_title: "Nuclear Safety Inspector"
resume_contact_email: "homerjsimpson@youremailaddress.com"
-8
View File
@@ -1,8 +0,0 @@
<footer class="site-footer">
<div class="wrapper">
</div>
</footer>
-17
View File
@@ -1,17 +0,0 @@
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/">{{ site.title }}</a>
<nav class="site-nav">
{% for page in site.pages %}
{% if page.title %}
<a class="page-link" href="{{ page.url }}">{{ page.title }}</a>
{% endif %}
{% endfor %}
</nav>
</div>
</header>
-20
View File
@@ -1,20 +0,0 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<div class="page-content">
<div class="wrapper">
{{ content }}
</div>
</div>
{% include footer.html %}
</body>
</html>
-20
View File
@@ -1,20 +0,0 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<div class="page-content">
<div class="wrapper">
{{ content }}
</div>
</div>
{% include footer.html %}
</body>
</html>
-14
View File
@@ -1,14 +0,0 @@
---
layout: default
---
<div class="post">
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
</header>
<article class="post-content">
{{ content }}
</article>
</div>
-14
View File
@@ -1,14 +0,0 @@
---
layout: default
---
<div class="post">
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
</header>
<article class="post-content">
{{ content }}
</article>
</div>
+45
View File
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<div class="wrapper">
<header class="page-header">
<img src="images/avatar.jpg" alt="my photo" class="avatar">
<h1 class="header-name">{% site.resume_name %}</h1>
<div class="title-bar">
<h2 class="header-title">{% site.resume_title %}</h2>
<ul class="icon-links">
<li class="icon-link"><a href="" class=""></a></li>
</ul>
</div>
<div class="executive-summary">
<p>This is the executive summary. You should write a few brief, concise, and meaningful sentences about yourself from a professional context, and your immediate career goals. Make the length appropriate for your needs, but K.I.S.S.</p>
</div>
<a href="mailto:{% site.resume_contact_email %}" class="contact-button"></a>
</header>
<section class="primary-section">
<header class="section-header">
<h2>Experience</h2>
</header>
<div class="resume-item">
</div>
</section>
</div>
</body>
</html>
-6
View File
@@ -1,6 +0,0 @@
---
layout: post
title: "Hello World"
---
Start writing content...
+1 -1
View File
@@ -11,4 +11,4 @@
@import "layout";
// Layouts
@import "home";
@import "resume";
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

+1 -5
View File
@@ -1,7 +1,3 @@
---
layout: home
layout: resume
---
<div class="home">
</div>
-20
View File
@@ -1,20 +0,0 @@
---
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for post in site.posts %}
<url>
<loc>{{ site.url }}{{ post.url | remove: 'index.html' }}</loc>
</url>
{% endfor %}
{% for page in site.pages %}
{% if page.layout != nil %}
{% if page.layout != 'feed' %}
<url>
<loc>{{ site.url }}{{ page.url | remove: 'index.html' }}</loc>
</url>
{% endif %}
{% endif %}
{% endfor %}
</urlset>