diff options
-rw-r--r-- | config/titles.json | 1 | ||||
-rw-r--r-- | template/content/contact.tpl | 49 | ||||
-rw-r--r-- | template/index.tpl | 4 |
3 files changed, 53 insertions, 1 deletions
diff --git a/config/titles.json b/config/titles.json index 2c63c08..da26752 100644 --- a/config/titles.json +++ b/config/titles.json @@ -1,2 +1,3 @@ { + "contact": "Contact" } diff --git a/template/content/contact.tpl b/template/content/contact.tpl index e69de29..029b7de 100644 --- a/template/content/contact.tpl +++ b/template/content/contact.tpl @@ -0,0 +1,49 @@ +<div class="page-header"> + <h1>About me</h1> +</div> + +<div class="panel panel-default"> + <div class="panel-body"> + <p> + I'm Michał. I'm from Łódź, Poland, where I graduated from the Technical University od Łódź way too long time ago. + </p> + <p> + I do some web-dev stuff (and been doing it professionally for even longer time), but this place is mostly for my out-of-work stuff. + </p> + <p> + That stuff is mostly related to two main topics: bridge (the card game thing, not the driving over a river thing) and racing. + </p> + <p> + Bridge stuff is mostly related to my hobby-slash-job as a tournament director.<br /> + Racing stuff is mostly related to digging out various stats and trivia. + </p> + <p> + As you may have already noticed from my projects, I mainly code in PHP and Python, with an occasional shell script or web interface somewhere in between. + </p> + <p> + Other places where I keep my coding stuff include: + <ul> + <li> + <a href="https://emkael.info/cgit/">my private git repository hosting</a>, where I keep projects that are not complete enough to show on GitHub (and clone of my GitHub repos) + </li> + <li> + my private SVN hosting, for which I'm too lazy to have a decent web interface, and where I keep projects that are old enough for me to not bother with porting them to git (but they may come up somewhere in project READMEs) + </li> + </ul> + </div> +</div> + +<div class="page-header"> + <h1>How to reach me?</h1> +</div> + +<div class="panel panel-default"> + <div class="panel-body"> + <p> + I've got a <a href="//emkael.info/">personal website</a>. + </p> + <p> + Chances are, you'll find everything needed to contact me there, including my e-mail, <a href="https://emkael.info/emkael.pgp.txt">PGP public key</a> and links to other various places to interact with me. + </p> + </div> +</div> diff --git a/template/index.tpl b/template/index.tpl index c6bc195..d1f4b40 100644 --- a/template/index.tpl +++ b/template/index.tpl @@ -22,7 +22,9 @@ {$menu} - {$content} + <div class="container"> + {$content} + </div> <div class="container" > <hr /> |