Added client side syntax highlighting support in addition to existing server side syntax highlighting support. Updated readme and sample to reflect both types of highlighting.
28 lines
1.5 KiB
HTML
28 lines
1.5 KiB
HTML
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
|
|
<title>{{ .Title }}</title>
|
|
{{ with .Description }}<meta name="description" content="{{ . }}">{{ end }}
|
|
<meta name="author" content="{{ .Site.Author.name }}"/>
|
|
{{ .Hugo.Generator }}
|
|
{{ with .Site.Params.favicon }}<link href='{{ $.Site.BaseURL }}/{{ . }}' rel='icon' type='image/x-icon'/>{{ end }}
|
|
|
|
<link rel="alternate" href="{{ "/index.xml" | absURL }}" type="application/rss+xml" title="{{ .Site.Title }}">
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" />
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/main.css" />
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" />
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" />
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/pygment_highlights.css" />
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/highlight.min.css">
|
|
|
|
<!-- Facebook OpenGraph tags -->
|
|
<meta property="og:title" content="{{ .Title }}" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="{{ .URL }}" />
|
|
<meta property="og:image" content="/{{ .Site.Params.logo }}" />
|
|
|
|
</head>
|