mirror of
https://github.com/balkian/balkian.github.com.git
synced 2025-08-24 04:32:20 +00:00
New design
This commit is contained in:
103
index.html
103
index.html
@@ -1,55 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
||||
---
|
||||
layout: default
|
||||
title: Blog
|
||||
categories: blog
|
||||
---
|
||||
<!-- Pagination links -->
|
||||
{% if paginator.total_pages > 0 %}
|
||||
<div class="pagination pag-top">
|
||||
{% if paginator.previous_page %}
|
||||
<span class="previouspage"><i class="icon-chevron-sign-left"></i><a href="/{% if paginator.previous_page > 2 %}page{{ paginator.previous_page }}{% endif %}"> Newer Posts</a></span>
|
||||
{% else %}
|
||||
<span class="previouspage" style="visibility:hidden;"><i class="icon-chevron-sign-left"></i> Newer Posts</span>
|
||||
{% endif %}
|
||||
<span class="page_number ">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
||||
{% if paginator.next_page %}
|
||||
<span class="nextpage"><a href="/page{{ paginator.next_page }}"> Older Posts </a> <i class="icon-chevron-sign-right"></i></span>
|
||||
{% else %}
|
||||
<span class="nextpage" style="visibility:hidden;">Older Posts <i class="icon-chevron-sign-right"></i></span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
|
||||
<!-- This loops through the paginated posts -->
|
||||
{% for post in paginator.posts %}
|
||||
<div class="posthead">
|
||||
<h2><a href="{{ post.url }}" class="title">{{ post.title }}</a></h2>
|
||||
<span class="date">{{ post.date | date_to_string }}</span>
|
||||
{% for c in post.tags %}
|
||||
<span class="label label-success">{{ c }}</span>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="excerpt">
|
||||
{{ post.excerpt }}
|
||||
</div>
|
||||
<span><a href="{{ post.url }}"><i class="icon-pl2s"></i> Read more...</a></span>
|
||||
{% endfor %}
|
||||
|
||||
<title>Balkian's Showcase by balkian</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<h1>Balkian's Showcase</h1>
|
||||
<h2>GitHub is your new résumé</h2>
|
||||
|
||||
<section id="downloads">
|
||||
<a href="https://github.com/balkian" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
|
||||
</section>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="container">
|
||||
<section id="main_content">
|
||||
<h3>Balkian.</h3>
|
||||
|
||||
<p>And this is a space yet to be filled</p>
|
||||
|
||||
<pre><code>$ zsh
|
||||
~
|
||||
☠ balkian@github: nc -l 5000 &
|
||||
~
|
||||
☠ balkian@github: echo $JAVA_PATH > /dev/null
|
||||
</code></pre>
|
||||
|
||||
<p>But I will come back soon.</p>
|
||||
|
||||
<p>For more information, check out some of my organizations:</p>
|
||||
|
||||
<ul>
|
||||
<li>Intelligent Systems Group (UPM): <a href="https://github.com/gsi-upm" class="user-mention">@gsi-upm</a>
|
||||
</li>
|
||||
<li>Electrical Engineering Students' Association: <a href="https://github.com/eestec" class="user-mention">@eestec</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{% if paginator.total_pages > 0 %}
|
||||
<div class="pagination pag-bottom">
|
||||
{% if paginator.previous_page %}
|
||||
<span class="previouspage"><i class="icon-chevron-sign-left"></i><a href="/{% if paginator.previous_page > 2 %}page{{ paginator.previous_page }}{% endif %}"> Newer Posts</a></span>
|
||||
{% else %}
|
||||
<span class="previouspage" style="visibility:hidden;"><i class="icon-chevron-sign-left"></i> Newer Posts</span>
|
||||
{% endif %}
|
||||
<span class="page_number ">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
||||
{% if paginator.next_page %}
|
||||
<span class="nextpage"><a href="/page{{ paginator.next_page }}"> Older Posts </a> <i class="icon-chevron-sign-right"></i></span>
|
||||
{% else %}
|
||||
<span class="nextpage" style="visibility:hidden;">Older Posts <i class="icon-chevron-sign-right"></i></span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
Reference in New Issue
Block a user