Browse Source

Favicon, restyle top of homepage.

master
Ben Kurtovic 9 years ago
parent
commit
aec9a059f9
5 changed files with 54 additions and 39 deletions
  1. +1
    -0
      _layouts/base.html
  2. +1
    -1
      _posts/2011-06-23-oh-look-a-blog.md
  3. +20
    -38
      index.html
  4. BIN
     
  5. +32
    -0
      static/main.css

+ 1
- 0
_layouts/base.html View File

@@ -7,6 +7,7 @@
{% else %}
<title>{{ page.title }} - Ben Kurtovic</title>
{% endif %}
<link rel="icon" type="image/png" href="/static/favicon.png" />
<link rel="stylesheet" href="/static/main.css" />
<link rel="stylesheet" href="/static/syntax.css" /> <!-- shamelessly stolen from https://github.com/mojombo/tpw/blob/master/css/syntax.css -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">


+ 1
- 1
_posts/2011-06-23-oh-look-a-blog.md View File

@@ -1,7 +1,7 @@
---
layout: post
title: Oh Look, A Blog!
tags: Misc
tags: Wikipedia Misc
description: Just kinda playing with the idea of my own site right now
---



+ 20
- 38
index.html View File

@@ -3,46 +3,28 @@ layout: base
title: Home
---

<table>
<p>I'm a software developer and <a href="//en.wikipedia.org/">Wikipedian</a> currently studying computer science at the <a href="//illinois.edu/">University of Illinois at Urbana&ndash;Champaign</a>. My work mostly focuses on text parsing and analysis; I'm also interested in programming language theory and algorithm design.</p>
<table id="links">
<tr>
<td>
<p>I'm a software developer and <a href="//en.wikipedia.org/">Wikipedian</a> currently studying computer science at the <a href="//illinois.edu/">University of Illinois at Urbana&ndash;Champaign</a>. My work mostly focuses on text parsing and analysis; I'm also interested in programming language theory and algorithm design.</p>
</td>
<td>
<table>
<tr>
<td>Email</td>
<td><a href="mailto:ben.kurtovic@gmail.com">ben.kurtovic@gmail.com</a><br /><a href="mailto:kurtovc2@illinois.edu">kurtovc2@illinois.edu</a></td>
</tr>
<tr>
<td>GitHub</td>
<td><a href="//github.com/earwig">earwig</a></td>
</tr>
<tr>
<td>IRC</td>
<td><a href="http://webchat.freenode.net/?channels=%23%23earwig">Earwig</a> on <a href="//freenode.net">irc.freenode.net</a></td>
</tr>
<tr>
<td>Wikipedia</td>
<td><a href="//en.wikipedia.org/wiki/User:The_Earwig">[[User:The Earwig]]</a></td>
</tr>
<tr>
<td>Twitter</td>
<td><a href="//twitter.com/the_earwig">@the_earwig</a></td>
</tr>
<tr>
<td>LinkedIn</td>
<td><a href="//linkedin.com/in/benkurtovic">benkurtovic</a></td>
</tr>
<tr>
<td>PGP Key</td>
<td><a href="http://pgp.mit.edu:11371/pks/lookup?search=0x8A19649AE8DBB515&amp;fingerprint=on&amp;op=index">E8DBB515</a></td>
</tr>
</table>
</td>
<!-- <td>Email</td> -->
<td>GitHub</td>
<td>Freenode IRC</td>
<td>Wikipedia</td>
<td>Twitter</td>
<td>LinkedIn</td>
<td>PGP Key</td>
</tr>
<tr>
<!-- <td><a href="mailto:ben.kurtovic@gmail.com">ben.kurtovic@gmail.com</a></td> -->
<td><a href="//github.com/earwig">earwig</a></td>
<td><a href="http://webchat.freenode.net/?channels=%23%23earwig">Earwig</a></td>
<td><a href="//en.wikipedia.org/wiki/User:The_Earwig">The Earwig</a></td>
<td><a href="//twitter.com/the_earwig">@the_earwig</a></td>
<td><a href="//linkedin.com/in/benkurtovic">benkurtovic</a></td>
<td><a href="http://pgp.mit.edu:11371/pks/lookup?search=0x8A19649AE8DBB515&amp;fingerprint=on&amp;op=index">E8DBB515</a></td>
</tr>
</table>
<table>
<table id="work">
<tr>
<td>
<h2>Projects</h2>
@@ -134,7 +116,7 @@ title: Home
</li>
</ul>
</td>
<td style="width: 50%; vertical-align: top;">
<td>
<h2>Posts</h2>
<div>
Tags:


BIN
View File


+ 32
- 0
static/main.css View File

@@ -77,6 +77,38 @@ a.underlined:hover, a.underlined:active { text-decoration: none; }
line-height: 1.75em;
}

#links {
width: 100%;
text-align: center;
border-spacing: 0;
}

#links td {
width: 16.666666666667%;
}

#links td:not(:first-child) {
border-left: 1px solid #CCC;
}

#work {
width: 100%;
border-spacing: 0;
}

#work td {
width: 50%;
vertical-align: top;
}

#work td:not(:first-child) {
padding-left: 0.5em;
}

#work td:not(:last-child) {
padding-right: 0.5em;
}

.project {
margin-bottom: 1.25em;
}


Loading…
Cancel
Save