swh:1:snp:9f90daa2f0cb7e83b3230a52ab396e3b6448c798
Tip revision: 17d7a0d31873783398506bc500cfa009e98d1a23 authored by LuisGC on 24 November 2018, 20:23:48 UTC
testing new image and build command
testing new image and build command
Tip revision: 17d7a0d
header.html
<!DOCTYPE HTML>
<!--
Future Imperfect by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
{{ with $.Scratch.Get "generalTitle" }}
<title>{{ . }}</title>
{{ else }}
{{ with .Title }}
<title>{{ . }}</title>
{{ else }}
<title>{{ .Site.Title }}</title>
{{ end }}
{{ end }}
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
{{ .Hugo.Generator }}
{{ partial "favicon" . }}
{{ with .Params.author }}
<meta name="author" content="{{ . }}">
{{ end }}
{{ with .Description }}
<meta name="description" content="{{ . }}">
{{ else }}
{{ with .Site.Params.description }}
<meta name="description" content="{{ . }}">
{{ end }}
{{ end }}
{{ template "_internal/twitter_cards.html" . }}
{{ template "_internal/opengraph.html" . }}
<meta property="og:image" content="{{ .Site.BaseURL }}/images/logo.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="512">
<meta property="og:image:height" content="512">
{{ template "_internal/schema.html" . }}
{{ template "_internal/google_news.html" . }}
{{ if isset .Site.Params "customcss" }}
{{ $.Scratch.Set "cssFiles" .Site.Params.customCSS }}
{{ else }}
{{ $.Scratch.Set "cssFiles" false }}
{{ end }}
<!-- If the value "default" is passed into the param then we will first
load the standard css files associated with the theme -->
{{ if or (in ($.Scratch.Get "cssFiles") "default") (eq ($.Scratch.Get "cssFiles") false) }}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/atom-one-light.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway:400,800,900|Source+Sans+Pro:400,700">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.1.25/jquery.fancybox.min.css">
<link rel="stylesheet" href="{{ "css/main.css" | relURL }}">
<link rel="stylesheet" href="{{ "css/add-on.css" | relURL }}">
<link rel="stylesheet" href="{{ "css/academicons.min.css" | relURL }}">
{{ end }}
{{ if ne ($.Scratch.Get "cssFiles") false }}
{{ range $.Scratch.Get "cssFiles" }}
{{ if ne . "default" }}
<link rel="stylesheet" href="{{ . | relURL }}">
{{ end }}
{{ end }}
{{ end }}
{{ if (not .Params.disable_highlight) }}
{{ $highTheme := .Site.Params.highlightjsTheme }}
{{ with .Site.Params.highlightjsVersion }}
<link href='{{ $.Site.Params.highlightjsCDN | default "//cdn.bootcss.com" }}/highlight.js/{{ . }}/styles/{{ $highTheme }}.min.css' rel='stylesheet' type='text/css' />
{{ end }}
{{ end }}
{{ template "_internal/google_analytics.html" . }}
</head>
<body>
<!-- Wrapper -->
<div id="wrapper">