Forked from https://github.com/emallson/hexo-theme-tufte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
26 lines
1.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title><%= title %></title>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
|
<% if(config.author) { %>
|
|
<meta name="author" content="<%= config.author %>">
|
|
<% } %>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="<%= config.root + 'css/tufte.css'%>">
|
|
<link rel="stylesheet" type="text/css" href="<%= config.root + 'css/tufte_ext.css'%>">
|
|
<link rel="stylesheet" type="text/css" href="<%= config.root + 'css/solarized_light.css'%>">
|
|
<link href="//fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
|
|
<link rel="alternate" type="application/<%= config.feed.type %>+xml"
|
|
title="<%= config.title %>" href="<%= url_for(config.feed.path) %>" />
|
|
</head>
|
|
<body>
|
|
<%- partial('_partial/header') %>
|
|
<%- body %>
|
|
<footer>
|
|
<% if(page.prev_link) { %><a href="<%= config.root + page.prev_link %>">< Previous</a>
|
|
<% } else if(!page.title && page.prev !== 0) { %><a href="<%= config.root %>">< Previous</a><% } %>
|
|
<% if(page.next_link) { %><a href="<%= config.root + page.next_link %>">Next ></a><% } %>
|
|
</footer>
|
|
</body>
|
|
</html>
|