|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}"> |
| 3 | +<head> |
| 4 | + <!--<title>{{ .Title }} · {{ .Site.Title }}</title>--> |
| 5 | + <title>{{ .Title }}</title> |
| 6 | + {{ .Hugo.Generator }} |
| 7 | + <meta charset="utf-8"> |
| 8 | + <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> |
| 9 | + {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }} |
| 10 | + {{ with .Site.Params.site_description }}<meta name="description" content="{{ . }}">{{ end }} |
| 11 | + {{ if .RSSLink }} |
| 12 | + <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" /> |
| 13 | + <link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" /> |
| 14 | + {{ end }} |
| 15 | + <link rel="icon" href="{{ .Site.BaseURL }}favicon.ico"> |
| 16 | + <link rel="apple-touch-icon" href="{{ .Site.BaseURL }}apple-touch-icon.png" /> |
| 17 | + <link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css"> |
| 18 | + <link rel="stylesheet" href="{{ .Site.BaseURL }}css/monokai.css"> |
| 19 | + <link rel="stylesheet" href="{{ .Site.BaseURL }}fancybox/jquery.fancybox.css"> |
| 20 | + <link rel="stylesheet" href="{{ .Site.BaseURL }}font/font-awesome/css/font-awesome.min.css"> |
| 21 | + <link rel="stylesheet" href="{{ .Site.BaseURL }}font/icomoon/css/icomoon.css"> |
| 22 | + <link rel="stylesheet" href="{{ .Site.BaseURL }}css/font.css"> |
| 23 | + <link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,600' rel='stylesheet' type='text/css'> |
| 24 | + <link href='https://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'> |
| 25 | + {{ template "_internal/opengraph.html" . }} |
| 26 | + {{ template "_internal/google_news.html" . }} |
| 27 | + {{ template "_internal/schema.html" . }} |
| 28 | + {{ template "_internal/twitter_cards.html" . }} |
| 29 | + <script src="{{ .Site.BaseURL }}bower_components/jquery/dist/jquery-2.2.0.min.js "></script> |
| 30 | + <!--<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>--> |
| 31 | + <script src="{{ .Site.BaseURL }}fancybox/jquery.fancybox.pack.js"></script> |
| 32 | + <script src="{{ .Site.BaseURL }}js/script.js"></script> |
| 33 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/highlight.min.js"></script> |
| 34 | + <script>hljs.initHighlightingOnLoad();</script> |
| 35 | + |
| 36 | + <!-- MathJax --> |
| 37 | + <script type="text/x-mathjax-config"> |
| 38 | + MathJax.Hub.Config({ |
| 39 | + tex2jax: { |
| 40 | + inlineMath: [['$','$'], ['\\(','\\)']]} |
| 41 | + }); |
| 42 | + </script> |
| 43 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js"></script> |
| 44 | + |
| 45 | + <!-- hotkeys --> |
| 46 | + <script src="{{ .Site.BaseURL }}js/jquery.hotkeys.js "></script> |
| 47 | + |
| 48 | + <!-- bootstrap --> |
| 49 | + <link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/bootstrap/css/bootstrap.min.css"> |
| 50 | + <link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/bootstrap/css/dropdowns-enhancement.css"> |
| 51 | + <script src="{{ .Site.BaseURL }}bower_components/bootstrap/js/bootstrap.min.js"></script> |
| 52 | + <script src="{{ .Site.BaseURL }}bower_components/bootstrap/js/dropdowns-enhancement.js"></script> |
| 53 | + <link rel="stylesheet" href="{{ .Site.BaseURL }}css/bootstrap.css"> |
| 54 | + |
| 55 | + <!-- talaria --> |
| 56 | + <link href="{{ .Site.BaseURL }}bower_components/talaria/dist/talaria.css" rel="stylesheet" type="text/css"> |
| 57 | + <script type="text/javascript" src="{{ .Site.BaseURL }}bower_components/bluebird/js/browser/bluebird.js"></script> |
| 58 | + <script type="text/javascript" src="{{ .Site.BaseURL }}bower_components/talaria/dist/talaria.js"></script> |
| 59 | + |
| 60 | + <!-- highlightjs --> |
| 61 | + <!--<script src="{{ .Site.BaseURL }}bower_components/highlightjs/highlight.pack.min.js"></script>--> |
| 62 | + |
| 63 | +</head> |
| 64 | +<body> |
| 65 | +<div class="container"> |
0 commit comments