Skip to content

Commit 3cd7d17

Browse files
theme change
1 parent 9df461c commit 3cd7d17

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1285
-864
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
_site
1+
_site
2+
.sass-cache

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
elizarpepino.com

README.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

_config.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
1-
name: Architect Theme
2-
markdown: redcarpet
1+
# Site settings
2+
title: Elizar Pepino
3+
email: jupenz@gmail.com
4+
greetings: Elizar Pepino
5+
description: > # this means to ignore newlines until "baseurl:"
6+
A self-taught, pragmatic programmer, a coffee lover, and an occasional pixel pusher. Polyglot.
7+
baseurl: "" # the subpath of your site, e.g. /blog/
8+
url: "http://elizarpepino.com" # the base hostname & protocol for your site
9+
twitter_username: jupenz
10+
github_username: elizar
11+
dribbble_username: elizarpepino
12+
permalink: /:title
13+
14+
# Build settings
15+
markdown: kramdown

_includes/footer.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<script>
2+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
6+
7+
ga('create', 'UA-60354446-1', 'auto');
8+
ga('send', 'pageview');
9+
10+
</script>
11+
12+
<script type="text/javascript">
13+
/* * * CONFIGURATION VARIABLES * * */
14+
var disqus_shortname = 'elizarpepino';
15+
16+
/* * * DON'T EDIT BELOW THIS LINE * * */
17+
(function () {
18+
var s = document.createElement('script'); s.async = true;
19+
s.type = 'text/javascript';
20+
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
21+
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
22+
}());
23+
</script>

_includes/head.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
6+
<title>{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
7+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
8+
9+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
10+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
11+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
12+
<script src="//use.typekit.net/acc8yxp.js"></script>
13+
<script>try{Typekit.load();}catch(e){}</script>
14+
<script src="http://momentjs.com/downloads/moment.js" type="text/javascript"></script>
15+
<script src="/js/main.js" type="text/javascript"></script>
16+
</head>

_includes/header.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<header class="site-header">
2+
3+
<div class="wrapper">
4+
5+
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
6+
7+
<nav class="site-nav">
8+
<a href="#" class="menu-icon">
9+
<svg viewBox="0 0 18 15">
10+
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
11+
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
12+
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
13+
</svg>
14+
</a>
15+
16+
<div class="trigger">
17+
{% for page in site.pages %}
18+
{% if page.title %}
19+
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
20+
{% endif %}
21+
{% endfor %}
22+
</div>
23+
</nav>
24+
25+
</div>
26+
27+
</header>

_includes/left-nav.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<a href="/" class="logo"><img src="/images/logo.svg" alt="Elizar Pepino"><span>{{site.title}}</span></a>
2+
3+
<section>
4+
<h1 class="greetings">{{ site.greetings }}</h1>
5+
{{ site.description | markdownify }}
6+
</section>
7+
8+
<nav class="main-nav">
9+
<ul>
10+
<li><a class="btn page-link {% if page.url == '/index.html' or page.categories != nil %}active{% endif %}" href="/">Blog</a></li>
11+
{% for _page in site.pages %}
12+
{% if _page.title %}
13+
<li><a class="btn page-link {% if _page.url == page.url %}active{% endif %}" href="{{ _page.url | prepend: site.baseurl }}">{{ _page.title }}</a></li>
14+
{% endif %}
15+
{% endfor %}
16+
</ul>
17+
</nav>

_includes/main-content-footer.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<footer>
2+
<ul class="social-media-list">
3+
{% if site.github_username %}
4+
<li>
5+
<a href="https://github.com/{{ site.github_username }}">
6+
<span class="icon icon-github">
7+
<img src="/images/github.svg">
8+
</span>
9+
</a>
10+
</li>
11+
{% endif %}
12+
13+
{% if site.twitter_username %}
14+
<li>
15+
<a href="https://twitter.com/{{ site.twitter_username }}">
16+
<span class="icon icon-twitter">
17+
<img src="/images/twitter.svg">
18+
</span>
19+
</a>
20+
</li>
21+
{% endif %}
22+
{% if site.dribbble_username %}
23+
<li>
24+
<a href="https://dribbble.com/{{ site.dribbble_username }}">
25+
<span class="icon icon-dribbble">
26+
<img src="/images/dribbble.svg">
27+
</span>
28+
</a>
29+
</li>
30+
{% endif %}
31+
</ul>
32+
33+
<small>Copyright &copy; 2015 Elizar Pepino. All rights reserved.</small>
34+
</footer>

_layouts/awesome.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html>
3+
{% include head.html %}
4+
<body>
5+
<div class="page-content">
6+
<div class="wrapper">
7+
<aside class="left-nav">
8+
{% include left-nav.html %}
9+
</aside>
10+
11+
<main class="main-content">
12+
{{ content }}
13+
{% include main-content-footer.html %}
14+
</main>
15+
</div>
16+
</div>
17+
18+
{% include footer.html %}
19+
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)