Initial commit
This commit is contained in:
commit
924f52cddc
8 changed files with 141 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
_site/
|
||||||
|
.sass-cache/
|
||||||
|
.jekyll-cache/
|
||||||
|
.jekyll-metadata
|
||||||
|
Gemfile.lock
|
||||||
5
Gemfile
Normal file
5
Gemfile
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "jekyll"
|
||||||
|
gem "github-pages", group: :jekyll_plugins
|
||||||
|
gem "jekyll-theme-leap-day"
|
||||||
37
README.md
Normal file
37
README.md
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
## Welcome to GitHub Pages
|
||||||
|
|
||||||
|
You can use the [editor on GitHub](https://github.com/jepler/jepler.github.io/edit/master/README.md) to maintain and preview the content for your website in Markdown files.
|
||||||
|
|
||||||
|
Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files.
|
||||||
|
|
||||||
|
### Markdown
|
||||||
|
|
||||||
|
Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
Syntax highlighted code block
|
||||||
|
|
||||||
|
# Header 1
|
||||||
|
## Header 2
|
||||||
|
### Header 3
|
||||||
|
|
||||||
|
- Bulleted
|
||||||
|
- List
|
||||||
|
|
||||||
|
1. Numbered
|
||||||
|
2. List
|
||||||
|
|
||||||
|
**Bold** and _Italic_ and `Code` text
|
||||||
|
|
||||||
|
[Link](url) and 
|
||||||
|
```
|
||||||
|
|
||||||
|
For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/).
|
||||||
|
|
||||||
|
### Jekyll Themes
|
||||||
|
|
||||||
|
Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/jepler/jepler.github.io/settings). The name of this theme is saved in the Jekyll `_config.yml` configuration file.
|
||||||
|
|
||||||
|
### Support or Contact
|
||||||
|
|
||||||
|
Having trouble with Pages? Check out our [documentation](https://help.github.com/categories/github-pages-basics/) or [contact support](https://github.com/contact) and we’ll help you sort it out.
|
||||||
7
_config.yml
Normal file
7
_config.yml
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
name: Jeff Epler
|
||||||
|
title: Jeff Epler
|
||||||
|
markdown: kramdown
|
||||||
|
theme: jekyll-theme-leap-day
|
||||||
|
description: Freelance Software Development
|
||||||
|
github:
|
||||||
|
is_project_page: False
|
||||||
73
_layouts/default.html
Normal file
73
_layouts/default.html
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="{{ site.lang | default: "en-US" }}">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
|
||||||
|
{% seo %}
|
||||||
|
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
||||||
|
<script src="https://code.jquery.com/jquery-3.3.0.min.js" integrity="sha256-RTQy8VOmNlT6b2PIRur37p6JEBZUE7o8wPgMvu18MC4=" crossorigin="anonymous"></script>
|
||||||
|
<script src="{{ '/assets/js/main.js' | relative_url }}"></script>
|
||||||
|
<!--[if lt IE 9]>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" integrity="sha256-3Jy/GbSLrg0o9y5Z5n1uw0qxZECH7C6OQpVBgNFYa0g=" crossorigin="anonymous"></script>
|
||||||
|
<![endif]-->
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<h1>{{ site.title | default: site.github.repository_name }}</h1>
|
||||||
|
<p>{{ site.description | default: site.github.project_tagline }}</p>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div id="banner">
|
||||||
|
<span id="logo"></span>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<a href="{{ "assets/images/Jeff Epler's Resume 2019.pdf" | relative_url }}" class="button">Resume / CV</a>
|
||||||
|
<a href="mailto:jepler@gmail.com" class="button">Contact Me</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% if site.view_on_github %}
|
||||||
|
<a href="{{ site.github.repository_url }}" class="button fork"><strong>View On GitHub</strong></a>
|
||||||
|
{% endif %}
|
||||||
|
{% if site.show_downloads %}
|
||||||
|
<div class="downloads">
|
||||||
|
<span>Downloads:</span>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ site.github.zip_url }}" class="button">ZIP</a></li>
|
||||||
|
<li><a href="{{ site.github.tar_url }}" class="button">TAR</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div><!-- end banner -->
|
||||||
|
|
||||||
|
<div class="wrapper">
|
||||||
|
<nav>
|
||||||
|
<ul></ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
{{ content }}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<footer>
|
||||||
|
{% if site.github.is_project_page %}
|
||||||
|
<p>Project maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
|
||||||
|
{% endif %}
|
||||||
|
<p><small>Hosted on GitHub Pages — Theme by <a href="https://twitter.com/michigangraham">mattgraham</a></small></p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% if site.google_analytics %}
|
||||||
|
<script>
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||||
|
ga('create', '{{ site.google_analytics }}', 'auto');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
</script>
|
||||||
|
{% endif %}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
BIN
assets/images/Jeff Epler's Resume 2019.pdf
Normal file
BIN
assets/images/Jeff Epler's Resume 2019.pdf
Normal file
Binary file not shown.
0
css/main.css
Normal file
0
css/main.css
Normal file
14
index.md
Normal file
14
index.md
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
title: Jeff Epler, Freelance Software Developer
|
||||||
|
---
|
||||||
|
About Jeff
|
||||||
|
==========
|
||||||
|
|
||||||
|
I've been a software developer ever since I first started typing in program listings on an 80s home computer.
|
||||||
|
|
||||||
|
I'm available for contract-based software development, with an emphasis on embedded and linux software.
|
||||||
|
|
||||||
|
I've been a contributor to Free and Open Source software for over 20 years.
|
||||||
|
See my [github profile](https://github.com/jepler) for my contributions and original software.
|
||||||
|
|
||||||
Loading…
Reference in a new issue