<!doctype html> <html lang=“{{ site.lang | default: ”en-US“ }}”>
<head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="chrome=1">
{% seo %}
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}"> <link rel="icon" type="image/png" href="{{ site.url }}/favicon.png"> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> </head> <body> <div class="wrapper"> <section> <div id="title"> <h1><a href="{{ site.url }}">{{ site.title | default: site.github.repository_name }}</a></h1> <p>{{ site.description | default: site.github.project_tagline }}</p> </div> <hr> {% if site.posts.size > 0 %} <ul class="post-list"> {% for post in site.posts %} <li> {% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %} <h2> <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a> </h2> <span class="post-meta">{{ post.date | date: date_format }}</span> <div class="post-content"> {{ post.content }} </div> <hr> </li> {% endfor %} </ul> {% endif %} <div id="footer"> <span class="credits"><a href="{{ site.github.owner_url }}">{{ site.owner | default: site.github.owner_name }}</a> 写就此页</span> </div> </section> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script src="{{ '/assets/js/respond.js' | relative_url }}"></script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!--[if lt IE 8]> <link rel="stylesheet" href="{{ '/assets/css/ie.css' | relative_url }}"> <![endif]--> {% if site.google_analytics %} <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', '{{ site.google_analytics }}', 'auto'); ga('send', 'pageview'); </script> {% endif %} </body>
</html>