mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 07:45:01 -04:00
8698a276f9
highlighting tests, improved syntax highlighting and styling of pre blocks. Overriding dynamic gist styling. Added a plugin for pygments caching which should speed things up terrifically. added ender.js as a lightweight way of scripting the DOM, events, etc. Some general typography and semantic html improvements.
27 lines
637 B
HTML
27 lines
637 B
HTML
<section>
|
|
<h1>About Me</h1>
|
|
<p>Hi, I'm Octopress!</p>
|
|
</section>
|
|
{% if page.single and site.recent_posts %}
|
|
<section>
|
|
<h1>Recent Posts</h1>
|
|
<ul id="recent_posts">
|
|
{% for post in site.posts limit: site.recent_posts %}
|
|
<li class="post">
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endif %}
|
|
{% if site.twitter_user %}
|
|
<section>{% include twitter.html %}</section>
|
|
{% endif %}
|
|
{% if site.delicious_user %}
|
|
<section>{% include delicious.html %}</section>
|
|
{% endif %}
|
|
{% if site.pinboard_user %}
|
|
<section>{% include pinboard.html %}</section>
|
|
{% endif %}
|
|
|