This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if((navigator.userAgent.toLowerCase().indexOf('msie 6') != -1) && | |
(navigator.userAgent.toLowerCase().indexOf('msie 7') == -1)){ | |
if( !document.referrer || | |
(document.referrer.indexOf(document.location.hostname) === -1 && | |
document.referrer.indexOf("itsobsolete") === -1)){ | |
document.location.href = | |
"http://ie6.itsobsolete.com?title=Ringce&url=" + | |
escape(document.location.href); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% for node in page.node.walk %} | |
<ul> | |
{% for list_page in node.pages %} | |
{% if list_page.display_in_list %} | |
<li> | |
<h1><a href="{{list_page.url}}">{{list_page.title}}</a></h1> | |
{% if page.excerpt %} | |
<div class="page-excerpt"> | |
{% render_excerpt list_page %} | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="excerpt"> | |
{% latest_excerpt "{{site.folder.path}}/blog" %} | |
</div> | |
<div id="excerpt-footer"> | |
Read More: <a href="{{latest_excerpt_url}}">{{latest_excerpt_title}}</a> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This site uses <a href="{{links.python}}">Python</a>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
{%spaceless%} | |
<feed xmlns="http://www.w3.org/2005/Atom"> | |
<title>{{site.name}} {{page.node.name}}</title> | |
<link href="{{page.node.full_url}}/atom.xml" rel="self"/> | |
<link href="{{site.full_url}}"/> | |
<updated>{{now|xmldatetime}}</updated> | |
<id>{{site.full_url}}</id> | |
{% for node_page in page.node.walk_pages %} | |
{% if node_page.display_in_list %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%recent_posts recents 5 %} | |
<ul> | |
{%for post in recents %} | |
<li> | |
<a href='{{post.url}}'>{{post.title}}</a> | |
</li> | |
{%endfor%} | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%extends "skeleton/_root.html"%} | |
{%hyde | |
awesome: awesome1 | |
%} | |
{%block all%} | |
{{page.awesome}} | |
lorem ipsum | |
{%endblock%} |
OlderNewer