12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <meta charset="utf-8">
- <meta name="robots" content="all,follow">
- <meta name="googlebot" content="index,follow,snippet,archive">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- {{ $title_plain := .Title | markdownify | plainify }}
- <title>{{ $title_plain }}</title>
- <meta name="author" content="{{ .Param " author" }}" />
- {{ $keywords := .Site.Params.defaultKeywords | default (slice "" | first 0) }}
- {{ if isset .Params "tags" }}{{ range .Params.tags }}{{ $keywords = $keywords | append . }}{{ end }}{{ end }}
- {{ if isset .Params "keywords" }}{{ range .Params.keywords }}{{ $keywords = $keywords | append . }}{{ end }}{{ end }}
- {{ if gt (len $keywords) 0 }}
- <meta name="keywords" content="{{ delimit (uniq $keywords) " , " }}">
- {{ end }}
- {{ $description_plain := default .Site.Params.defaultDescription .Description | markdownify | plainify }}
- <meta name="description" content="{{ $description_plain }}">
- <link rel="icon" href="/img/logo/favicon.png">
- {{ hugo.Generator }}
- <!-- Bootstrap and Font Awesome CSS -->
- <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.11.2/css/all.css">
- <!-- <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> -->
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
- integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
- <!-- jQuery -->
- <script
- src="https://code.jquery.com/jquery-3.3.1.js"
- integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
- crossorigin="anonymous"></script>
- {{ with .Site.Params.style }}
- <link href="{{ "css/style" | relURL }}.{{ . }}.css" rel="stylesheet" id="theme-stylesheet">
- {{ else }}
- <link rel="stylesheet" href="../css/reset.css">
- <link href="{{ "css/style.css" | relURL }}" rel="stylesheet" id="theme-stylesheet">
- <!-- <link href="{{ "css/style.default.css" | relURL }}" rel="stylesheet" id="theme-stylesheet"> -->
- {{ end }}
- <!-- Google Font -->
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;500&display=swap" rel="stylesheet">
|