mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-04-27 14:57:40 +00:00
ok fine ... I added a damn "about me" page
This commit is contained in:
parent
34e1ecee53
commit
6808a2cba2
3 changed files with 67 additions and 2 deletions
|
|
@ -67,7 +67,7 @@
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<h1><a href="/"><%= site %></a></h1>
|
<h1><a href="/"><%= site %></a></h1>
|
||||||
<br>
|
<br>
|
||||||
<h4>By <%= author %></h4>
|
<h4>By <a href="/about"><%= author %></a></h4>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<nav>
|
<nav>
|
||||||
|
|
@ -114,7 +114,7 @@
|
||||||
<% } -%>
|
<% } -%>
|
||||||
|
|
||||||
<footer class="container">
|
<footer class="container">
|
||||||
© 2006 - <%= new Date().getFullYear() %> <a href="mailto:<%= email %>"><%= author %></a>
|
© 2006 - <%= new Date().getFullYear() %> <a href="/about"><%= author %></a>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<% for (var i in allScripts) { -%>
|
<% for (var i in allScripts) { -%>
|
||||||
|
|
|
||||||
55
public/about.md
Normal file
55
public/about.md
Normal file
|
|
@ -0,0 +1,55 @@
|
||||||
|
|
||||||
|
# About me
|
||||||
|
|
||||||
|
I'm Sami Samhuri, a software developer and general technology geek. Sometimes
|
||||||
|
I write my thoughts and post my projects here. I moved to [Victoria, BC][vic]
|
||||||
|
in 2003 to study computer science at the [University of Victoria][uvic], and
|
||||||
|
drop out a couple of years later.
|
||||||
|
|
||||||
|
[vic]: http://en.wikipedia.org/wiki/Victoria,_British_Columbia
|
||||||
|
[uvic]: http://uvic.ca
|
||||||
|
|
||||||
|
|
||||||
|
## What I do
|
||||||
|
|
||||||
|
I spend a lot of time writing web apps with Ruby and JavaScript, and less time
|
||||||
|
making things for iOS and Android. I dabble with lots of other technologies for
|
||||||
|
fun and profit and have been known to do some ops and devops.
|
||||||
|
|
||||||
|
My public work includes [some open-source projects][proj], and there are even
|
||||||
|
more on [GitHub][] but you'll have to wade through ones that I've forked from
|
||||||
|
others.
|
||||||
|
|
||||||
|
[proj]: /projects
|
||||||
|
[GitHub]: https://github.com/samsonjs
|
||||||
|
|
||||||
|
You can learn more about my career on [Zerply][]. Which I can barely write
|
||||||
|
with a straight face. *Zerply?*
|
||||||
|
|
||||||
|
[Zerply]: http://zerply.com/sjs/
|
||||||
|
|
||||||
|
|
||||||
|
## Where you can find me
|
||||||
|
|
||||||
|
On Twitter as [@_sjs][twtr]. On App.net as [@sjs][adn].
|
||||||
|
|
||||||
|
[twtr]: https://twitter.com/_sjs
|
||||||
|
[adn]: https://alpha.app.net/sjs
|
||||||
|
|
||||||
|
|
||||||
|
## So meta
|
||||||
|
|
||||||
|
This site is lovingly hand-crafted, tag by tag and pixel by pixel. It adheres to
|
||||||
|
and embraces modern web standards. It is authored in HTML, CSS, and JavaScript
|
||||||
|
in conjunction with [Markdown][Markdown] and [LESS][], and then it's all
|
||||||
|
compiled with [harp][] before [Apache][] serves it up.
|
||||||
|
|
||||||
|
[Markdown]: http://daringfireball.net/projects/markdown/
|
||||||
|
[LESS]: http://lesscss.org
|
||||||
|
[harp]: http://harpjs.com
|
||||||
|
[Apache]: http://apache.org
|
||||||
|
|
||||||
|
Oh, and a shout out to [Font Awesome][fa] for being awesome.
|
||||||
|
<i class="fa fa-thumbs-up" style="color: #ccc"></i>
|
||||||
|
|
||||||
|
[fa]: http://fontawesome.io
|
||||||
|
|
@ -134,6 +134,16 @@ header.primary {
|
||||||
color: darken(@background, 10%);
|
color: darken(@background, 10%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h4 a {
|
||||||
|
color: darken(@background, 10%);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 a:hover {
|
||||||
|
color: @background;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
|
|
||||||
/* Fix font rendering bugs in Safari. In this case, font weight differences
|
/* Fix font rendering bugs in Safari. In this case, font weight differences
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue