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.
36 lines
1.3 KiB
36 lines
1.3 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">
|
|
<% if(config.feed) { %>
|
|
<link rel="alternate" type="application/<%= config.feed.type %>+xml"
|
|
title="<%= config.title %>" href="<%= url_for(config.feed.path) %>" />
|
|
<% } %>
|
|
<script>
|
|
MathJax = {
|
|
tex: {
|
|
inlineMath: [['$', '$'], ['\\(', '\\)']]
|
|
}
|
|
};
|
|
</script>
|
|
<script id="MathJax-script" async
|
|
src="/mathjax/tex-svg.js">
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<%- partial('_partial/header') %>
|
|
<%- body %>
|
|
<footer>
|
|
made in the boiling hot cement cubes of Philadelphia PA.
|
|
</footer>
|
|
</body>
|
|
</html>
|