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.
41 lines
1.8 KiB
HTML
41 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<!--[if IEMobile 7 ]><html class="no-js iem7" manifest="default.appcache?v=1"><![endif]-->
|
|
<!--[if lt IE 7 ]><html class="no-js ie6" lang="en"><![endif]-->
|
|
<!--[if IE 7 ]><html class="no-js ie7" lang="en"><![endif]-->
|
|
<!--[if IE 8 ]><html class="no-js ie8" lang="en"><![endif]-->
|
|
<!--[if (gte IE 9)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" manifest="default.appcache?v=1" lang="en"><!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
{% if page.title %}
|
|
<title>{{site.title}}: {{page.title}}{% if site.author %} - {{ site.author }}{% endif %}</title>
|
|
{% else %}
|
|
<title>{{site.title}}{% if site.author %} - {{ site.author }}{% endif %}</title>
|
|
{% endif %}
|
|
<meta name="author" content="{{site.author}}">
|
|
{% if page.description %}
|
|
<meta name="description" content="{{page.description}}"/>
|
|
{% endif %}
|
|
|
|
<!-- http://t.co/dKP3o1e -->
|
|
<meta name="HandheldFriendly" content="True">
|
|
<meta name="MobileOptimized" content="320">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% if page.keywords %}
|
|
<meta name="keywords" content="{{page.keywords}}"/>
|
|
{% endif %}
|
|
|
|
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
|
|
<!--<script src="/javascripts/octopress.js" type="text/javascript"></script>-->
|
|
<script src="/javascripts/libs/modernizr-1.7.js"></script>
|
|
<script src="/javascripts/libs/ios-viewport-scaling-bug-fix.js"></script>
|
|
<script src="/javascripts/libs/json2.js"></script>
|
|
<script src="/javascripts/libs/jXHR.js"></script>
|
|
<script src="/javascripts/libs/ender.js"></script>
|
|
<script src="/javascripts/syntax-helper.js"></script>
|
|
{% if site.google_analytics_tracking_id %}
|
|
{% include google_analytics.html %}
|
|
{% endif %}
|
|
<link href="/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml"/>
|
|
</head>
|