Commit 8a4c30dc authored by Murukesh Mohanan's avatar Murukesh Mohanan

style updates

parent a6c775b2
......@@ -2,6 +2,10 @@ vim:
name: Vim
desc: The One True Editor
linux:
name: Linux
desc: Thoughts on Linux
config:
name: Configuration
desc: COnfiguration of various software that I use
......@@ -33,3 +37,7 @@ football:
tech:
name: Technology
desc: Thoughts on Technology
photo:
name: Photography
desc: Thoughts on Photography
......@@ -16,20 +16,20 @@ pagestyle: posts
<a href="{{ site.base-url }}{{ page.url }}">
{{ page.title }}
</a>
{% if page.tags.size > 0 %}
{% endif %}
<time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">
{{ page.date | date: "%B %e, %Y" }}
</time>
{% if page.tags.size > 0 %}
<ol class="tags-list">
{% for page_tag in page.tags %}
{% assign tag = site.data.tags[page_tag] %}
{% if tag %}
<li><a class="tag" href="/blog/tag/{{ page_tag }}/">{{ tag.name }}</a></li>
{% endif %}
{% endfor %}
</ol>
{% endif %}
</h1>
<div class="tags-list">
{% for page_tag in page.tags %}
{% assign tag = site.data.tags[page_tag] %}
{% if tag %}
<a class="tag" href="/blog/tag/{{ page_tag }}/">{{ tag.name }}</a>
{% endif %}
{% endfor %}
</div>
</header>
{% assign sections = content | split: site.section_separator %}
......
......@@ -10,7 +10,19 @@ layout: default
<header class="post-title">
<h1>
<a href="{{site.base-url}}{{ post.url }}#main">{{ post.title }}</a>
<time datetime="{{ post.date | date_to_xmlschema }}" class="post-date"> {{ post.date | date: "%B %e, %Y" }}</time>
<time datetime="{{ post.date | date_to_xmlschema }}" class="post-date">
{{ post.date | date: "%B %e, %Y" }}
</time>
{% if post.tags.size > 0 %}
<ol class="tags-list">
{% for post_tag in post.tags %}
{% assign tag = site.data.tags[post_tag] %}
{% if tag %}
<li><a class="tag" href="/blog/tag/{{ post_tag }}/">{{ tag.name }}</a></li>
{% endif %}
{% endfor %}
</ol>
{% endif %}
</h1>
</header>
......
......@@ -15,19 +15,24 @@ Currently contains a nifty `vimrc`, and some plugins:
- [Pathogen](http://www.vim.org/scripts/script.php?script_id=2332)
- [diffchar.vim](https://github.com/vim-scripts/diffchar.vim)
- [eregex.vim](https://github.com/othree/eregex.vim.git)
- [nerdtree](https://github.com/scrooloose/nerdtree.git)
- [supertab](https://github.com/ervandew/supertab.git)
- [syntastic](https://github.com/scrooloose/syntastic.git)
- [vim2hs](https://github.com/dag/vim2hs)
- [vim-surround](https://github.com/tpope/vim-surround.git)
- [LaTeX-Box](https://github.com/LaTeX-Box-Team/LaTeX-Box.git)
- [ctrlp.vim](https://github.com/kien/ctrlp.vim)
- [vim-airline](https://github.com/bling/vim-airline)
- [vim-colorschemes](https://github.com/flazz/vim-colorschemes.git)
- [vim-fugitive](https://github.com/tpope/vim-fugitive.git)
- [AnsiEsc.vim](https://github.com/vim-scripts/AnsiEsc.vim)
- [vimtex](https://github.com/lervag/vimtex)
- [molokai](https://github.com/tomasr/molokai.git)
- [ctrlp.vim](https://github.com/ctrlpvim/ctrlp.vim.git)
- [vim-markdown](https://github.com/gabrielelana/vim-markdown)
Old plugins:
- [vim-colorschemes](https://github.com/flazz/vim-colorschemes.git) - *replaced with just the molokai scheme*
- [eregex.vim](https://github.com/othree/eregex.vim.git) - didn't use it enough
- [ctrlp.vim](https://github.com/kien/ctrlp.vim) - *superseded by ctrlp/ctrlp.vim*
- [LaTeX-Box](https://github.com/LaTeX-Box-Team/LaTeX-Box.git) - *superseded by vimtex*
</div>
You might wanna do a `git pull` on some of the plugins inside `.vim/bundle`:
......@@ -43,7 +48,7 @@ You might wanna do a `git pull` on some of the plugins inside `.vim/bundle`:
# Some scripts {#scripts}
- [curlwc.sh](https://github.com/murukeshm/scripts/blob/master/curlwc.sh):
This script uses [curl(1)](http://linux.die.net/man/1/curl) to download the target file in parts. Not very robust.
This script uses [curl(1)](http://manpages.ubuntu.com/curl.1) to download the target file in parts. Not very robust.
- [mtcd.sh](https://github.com/murukeshm/scripts/blob/master/mtcd.sh):
This script mounts all arguments in directories within `~/cdrom` (as ISO9660 images), and also handles unmounting.
......
......@@ -6,6 +6,7 @@
.post-title a {
text-decoration: none;
font-size: medium;
}
kbd {
......@@ -27,7 +28,7 @@ img {
max-width: 100%;
}
.tags-list {
.post-date {
text-align: right;
}
......@@ -37,6 +38,19 @@ img {
border-radius: 0.3em;
font-variant: small-caps;
text-decoration: none;
font-size: initial;
}
ol.tags-list {
margin: 0;
padding: 0;
text-align: right;
}
ol.tags-list li {
list-style: none;
list-style-image: none;
display: inline-block;
}
/*
......@@ -81,6 +95,7 @@ pre span.lineno {
}
.post-title h1 {
margin: 0.5em;
overflow: auto;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment