Compare commits
	
		
			3 Commits
		
	
	
		
			dbb22984e6
			...
			94a87494a8
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 94a87494a8 | |||
| 006c22ca6a | |||
| 70b9e788c9 | 
@@ -8,9 +8,9 @@
 | 
				
			|||||||
    <main>
 | 
					    <main>
 | 
				
			||||||
        <section>
 | 
					        <section>
 | 
				
			||||||
        <div class="article-header">
 | 
					        <div class="article-header">
 | 
				
			||||||
            <h3 class="spaced">
 | 
					            <h1 class="spaced">
 | 
				
			||||||
                {{ .Page.Title }}
 | 
					                {{ .Page.Title }}
 | 
				
			||||||
            </h3>
 | 
					            </h1>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <article>
 | 
					        <article>
 | 
				
			||||||
            {{ block "main" . }}
 | 
					            {{ block "main" . }}
 | 
				
			||||||
@@ -23,4 +23,4 @@
 | 
				
			|||||||
        {{ end }}
 | 
					        {{ end }}
 | 
				
			||||||
    </main>
 | 
					    </main>
 | 
				
			||||||
</body>
 | 
					</body>
 | 
				
			||||||
</html>
 | 
					</html>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,7 +3,7 @@
 | 
				
			|||||||
<link rel="alternate" type="application/rss+xml" title="{{ .Site.Title }} RSS" href='{{ absURL "/index.xml" }}'>
 | 
					<link rel="alternate" type="application/rss+xml" title="{{ .Site.Title }} RSS" href='{{ absURL "/index.xml" }}'>
 | 
				
			||||||
<link rel="stylesheet" type="text/css" media="screen" href='{{ absURL "/style.css" }}'>
 | 
					<link rel="stylesheet" type="text/css" media="screen" href='{{ absURL "/style.css" }}'>
 | 
				
			||||||
<link rel="stylesheet" type="text/css" href='{{ absURL "/lugo.css" }}'>
 | 
					<link rel="stylesheet" type="text/css" href='{{ absURL "/lugo.css" }}'>
 | 
				
			||||||
{{ with .Site.Params.favicon }}<link rel="icon" href="{{ . }}">{{ end -}}
 | 
					<link rel="icon" type="image/x-icon" href="/favicon.ico">
 | 
				
			||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
 | 
					<meta name="viewport" content="width=device-width, initial-scale=1">
 | 
				
			||||||
<meta name="robots" content="index, follow">
 | 
					<meta name="robots" content="index, follow">
 | 
				
			||||||
<meta charset="utf-8">
 | 
					<meta charset="utf-8">
 | 
				
			||||||
@@ -17,10 +17,10 @@
 | 
				
			|||||||
<meta property="og:url" content="{{ .Page.Permalink }}">
 | 
					<meta property="og:url" content="{{ .Page.Permalink }}">
 | 
				
			||||||
<meta property="og:image" content="{{ .Page.Permalink }}qr.png">
 | 
					<meta property="og:image" content="{{ .Page.Permalink }}qr.png">
 | 
				
			||||||
{{ if isset .Params "tags" }}
 | 
					{{ if isset .Params "tags" }}
 | 
				
			||||||
<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . " , " }}{{ end }}">
 | 
					<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">
 | 
				
			||||||
{{ end -}}
 | 
					{{ end -}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
{{ if isset .Params "redirect" }}
 | 
					{{ if isset .Params "redirect" }}
 | 
				
			||||||
<meta http-equiv="refresh" content="2; URL={{ with .Params.redirect }}{{ . }}{{ end }}">
 | 
					<meta http-equiv="refresh" content="2; URL={{ with .Params.redirect }}{{ . }}{{ end }}">
 | 
				
			||||||
{{ end -}}
 | 
					{{ end -}}
 | 
				
			||||||
</head>
 | 
					</head>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,7 +3,7 @@
 | 
				
			|||||||
    --bg-text: #606060;
 | 
					    --bg-text: #606060;
 | 
				
			||||||
    --text: #ffffff;
 | 
					    --text: #ffffff;
 | 
				
			||||||
    --header: #454545;
 | 
					    --header: #454545;
 | 
				
			||||||
    --header-text: #d3d3d3;
 | 
					    --header-text: #ffffff;
 | 
				
			||||||
    --content-bg: #303030;
 | 
					    --content-bg: #303030;
 | 
				
			||||||
    --accent: #344a70;
 | 
					    --accent: #344a70;
 | 
				
			||||||
    --link: #3e765d;
 | 
					    --link: #3e765d;
 | 
				
			||||||
@@ -93,13 +93,18 @@ h1,h2,h3,h4,h5,h6 {
 | 
				
			|||||||
    text-align: center;
 | 
					    text-align: center;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
header h1 {
 | 
					header > h1 {
 | 
				
			||||||
    margin: 0;
 | 
					    margin: 0;
 | 
				
			||||||
    font-size: 2.5rem;
 | 
					    font-size: 2.5rem;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
article h1 {
 | 
					.article-header > h1 {
 | 
				
			||||||
    margin-bottom: 1rem;
 | 
						font-size: 1.5rem;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					h1 {
 | 
				
			||||||
 | 
						/* Not sure why h1 needs this fix, but otherwise it's smaller than h2 */
 | 
				
			||||||
 | 
						font-size: 2rem;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
a {
 | 
					a {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user