|
3 | 3 | <head>
|
4 | 4 | <meta charset="utf-8">
|
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1">
|
6 |
| - <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> |
7 |
| - <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> |
8 |
| - <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> |
9 |
| - <link rel="manifest" href="/site.webmanifest"> |
| 6 | + <link rel="apple-touch-icon" sizes="180x180" href="{{ .Site.BaseURL }}/apple-touch-icon.png"> |
| 7 | + <link rel="icon" type="image/png" sizes="32x32" href="{{ .Site.BaseURL }}/favicon-32x32.png"> |
| 8 | + <link rel="icon" type="image/png" sizes="16x16" href="{{ .Site.BaseURL }}/favicon-16x16.png"> |
| 9 | + <link rel="manifest" href="{{ .Site.BaseURL }}/site.webmanifest"> |
10 | 10 |
|
11 | 11 | <title>Command Line Interface Guidelines (日本語訳)</title>
|
12 | 12 | <meta name="twitter:card" content="summary_large_image">
|
|
17 | 17 | <meta name="twitter:description" content="An open-source guide to help you write better command-line programs, taking traditional UNIX principles and updating them for the modern day." />
|
18 | 18 | <meta property="og:description" content="An open-source guide to help you write better command-line programs, taking traditional UNIX principles and updating them for the modern day." />
|
19 | 19 |
|
20 |
| - <meta name="twitter:image" content="https://kotet.jp/cli-guidlines-ja/CLIG-social-card.jpg" /> |
21 |
| - <meta property="og:image" content="https://kotet.jp/cli-guidlines-ja/CLIG-social-card.jpg" /> |
| 20 | + <meta name="twitter:image" content="{{ .Site.BaseURL }}/CLIG-social-card.jpg" /> |
| 21 | + <meta property="og:image" content="{{ .Site.BaseURL }}/CLIG-social-card.jpg" /> |
22 | 22 |
|
23 | 23 | <style>
|
24 | 24 | @import url('https://fonts.googleapis.com/css2?family=Zen+Antique+Soft&display=swap');
|
|
27 | 27 | @import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho:wght@700&display=swap');
|
28 | 28 | </style>
|
29 | 29 |
|
30 |
| - {{ $css := resources.Get "css/main.css" | resources.ToCSS }} |
31 |
| - <link rel="stylesheet" media="screen" href="/css/main.css"> |
32 |
| - <link rel="stylesheet" media="print" href="/css/print.css"> |
| 30 | + {{ $css_main := resources.Get "css/main.css" | resources.ToCSS }} |
| 31 | + <link rel="stylesheet" media="screen" href="{{ $css_main.Permalink }}"> |
| 32 | + {{ $css_print := resources.Get "css/print.css" | resources.ToCSS }} |
| 33 | + <link rel="stylesheet" media="print" href="{{ $css_print.Permalink }}"> |
33 | 34 | </head>
|
34 | 35 | <body>
|
35 | 36 | {{- block "main" . }}{{- end }}
|
|
0 commit comments