|
| 1 | +<head> |
| 2 | + <meta charset="utf-8" /> |
| 3 | + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
| 4 | + <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' /> |
| 5 | + |
| 6 | + {{ with .Site.Params.name }}<meta name="author" content="{{ . }}">{{ end }} |
| 7 | + {{ with .Site.Params.role }}<meta name="description" content="{{ . }}">{{ end }} |
| 8 | + |
| 9 | + <title>{{ .Site.Title }}</title> |
| 10 | + |
| 11 | + <link rel="apple-touch-icon" sizes="76x76" href="{{ "img/favicon.png" | relURL }}" /> |
| 12 | + <link rel="icon" type="image/png" href="{{ "img/favicon.png" | relURL }}" /> |
| 13 | + |
| 14 | + <!-- Fonts and icons --> |
| 15 | + <link rel="stylesheet" type="text/css" |
| 16 | + href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" /> |
| 17 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" /> |
| 18 | + <!-- CSS Files --> |
| 19 | + <link href="/css/core/bootstrap.css" rel="stylesheet" /> |
| 20 | + <link href="/css/codemeta.css" rel="stylesheet" /> |
| 21 | + <link href="/css/material-kit.css?v=2.0.4" rel="stylesheet" /> |
| 22 | + |
| 23 | + <!-- Additional icons: fa-docker, academicons, R-logo --> |
| 24 | + <link rel="stylesheet" href="https://cdn.rawgit.com/gaborcsardi/r-font/master/rlogo.css"> |
| 25 | + <link rel="stylesheet" href="https://cdn.rawgit.com/wesbos/Font-Awesome-Docker-Icon/master/fontcustom/fontcustom.css"> |
| 26 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.0/css/academicons.min.css"> |
| 27 | + |
| 28 | + |
| 29 | + |
| 30 | + {{ range .Site.Params.custom_css }} |
| 31 | + <link rel="stylesheet" href="{{ "/css/" | relURL }}{{ . }}"> |
| 32 | + {{ end }} |
| 33 | + {{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }} |
| 34 | + <link rel="canonical" href="{{ .Permalink }}"> |
| 35 | + |
| 36 | +</head> |
0 commit comments