add font and css preloading links
parent
ffaa3cedfb
commit
ab0867d2df
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
ci:
|
ci:
|
||||||
collect:
|
collect:
|
||||||
numberOfRuns: 2
|
numberOfRuns: 3
|
||||||
staticDistDir: exampleSite/public
|
staticDistDir: exampleSite/public
|
||||||
url:
|
url:
|
||||||
- http://localhost/
|
- http://localhost/
|
||||||
|
@ -13,12 +13,17 @@ ci:
|
||||||
preset: "lighthouse:no-pwa"
|
preset: "lighthouse:no-pwa"
|
||||||
assertions:
|
assertions:
|
||||||
uses-long-cache-ttl: off
|
uses-long-cache-ttl: off
|
||||||
render-blocking-resources: off
|
tap-targets: warn
|
||||||
tap-targets: off
|
unsized-images: warn
|
||||||
first-contentful-paint: off
|
categories:performance:
|
||||||
first-meaningful-paint: off
|
- error
|
||||||
largest-contentful-paint: off
|
- minScore: 0.95
|
||||||
unsized-images: off
|
categories:accessibility:
|
||||||
|
- error
|
||||||
|
- minScore: 1
|
||||||
|
categories:seo:
|
||||||
|
- error
|
||||||
|
- minScore: 0.95
|
||||||
upload:
|
upload:
|
||||||
target: filesystem
|
target: filesystem
|
||||||
outputDir: lhci_reports
|
outputDir: lhci_reports
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
- ENHANCEMENT
|
- ENHANCEMENT
|
||||||
- improve and normalize microblog formatting
|
- improve and normalize microblog formatting
|
||||||
|
- add font and css preloading links
|
||||||
|
|
|
@ -2,11 +2,16 @@
|
||||||
title: Documentation
|
title: Documentation
|
||||||
---
|
---
|
||||||
|
|
||||||
[![Build Status](https://img.shields.io/drone/build/xoxys/hugo-geekdoc?logo=drone)](https://cloud.drone.io/xoxys/hugo-geekdoc)
|
<!-- markdownlint-capture -->
|
||||||
[![Hugo Version](https://img.shields.io/badge/hugo-0.65-blue.svg)](https://gohugo.io)
|
<!-- markdownlint-disable MD033 -->
|
||||||
[![GitHub release](https://img.shields.io/github/v/release/xoxys/hugo-geekdoc)](https://github.com/xoxys/hugo-geekdoc/releases/latest)
|
|
||||||
[![GitHub contributors](https://img.shields.io/github/contributors/xoxys/hugo-geekdoc)](https://github.com/xoxys/hugo-geekdoc/graphs/contributors)
|
<span class="badge-placeholder">[![Build Status](https://img.shields.io/drone/build/xoxys/hugo-geekdoc?logo=drone)](https://cloud.drone.io/xoxys/hugo-geekdoc)</span>
|
||||||
[![License: MIT](https://img.shields.io/github/license/xoxys/hugo-geekdoc)](https://github.com/xoxys/hugo-geekdoc/blob/master/LICENSE)
|
<span class="badge-placeholder">[![Hugo Version](https://img.shields.io/badge/hugo-0.65-blue.svg)](https://gohugo.io)</span>
|
||||||
|
<span class="badge-placeholder">[![GitHub release](https://img.shields.io/github/v/release/xoxys/hugo-geekdoc)](https://github.com/xoxys/hugo-geekdoc/releases/latest)</span>
|
||||||
|
<span class="badge-placeholder">[![GitHub contributors](https://img.shields.io/github/contributors/xoxys/hugo-geekdoc)](https://github.com/xoxys/hugo-geekdoc/graphs/contributors)</span>
|
||||||
|
<span class="badge-placeholder">[![License: MIT](https://img.shields.io/github/license/xoxys/hugo-geekdoc)](https://github.com/xoxys/hugo-geekdoc/blob/master/LICENSE)</span>
|
||||||
|
|
||||||
|
<!-- markdownlint-restore -->
|
||||||
|
|
||||||
Geekdoc is a simple Hugo theme for documentations. It is intentionally designed as a fast and lean theme and may not fit the requirements of complex projects. If a more feature-complete theme is required there are a lot of got alternatives out there. You can find a demo and the full documentation at [https://geekdocs.de](https://geekdocs.de).
|
Geekdoc is a simple Hugo theme for documentations. It is intentionally designed as a fast and lean theme and may not fit the requirements of complex projects. If a more feature-complete theme is required there are a lot of got alternatives out there. You can find a demo and the full documentation at [https://geekdocs.de](https://geekdocs.de).
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,19 @@
|
||||||
<title>{{ partial "title" . }} | {{ .Site.Title -}}</title>
|
<title>{{ partial "title" . }} | {{ .Site.Title -}}</title>
|
||||||
|
|
||||||
<link rel="icon" href="{{ "favicon/favicon-32x32.png" | relURL }}" type="image/x-icon">
|
<link rel="icon" href="{{ "favicon/favicon-32x32.png" | relURL }}" type="image/x-icon">
|
||||||
|
|
||||||
|
<link rel="preload" as="font" href="/fonts/Metropolis.woff2" type="font/woff2" crossorigin="anonymous">
|
||||||
|
<link rel="preload" as="font" href="/fonts/LiberationSans.woff2" type="font/woff2" crossorigin="anonymous">
|
||||||
|
<link rel="preload" as="font" href="/fonts/LiberationSans-Bold.woff2" type="font/woff2" crossorigin="anonymous">
|
||||||
|
<link rel="preload" as="font" href="/fonts/LiberationSans-BoldItalic.woff2" type="font/woff2" crossorigin="anonymous">
|
||||||
|
<link rel="preload" as="font" href="/fonts/LiberationSans-Italic.woff2" type="font/woff2" crossorigin="anonymous">
|
||||||
|
<link rel="preload" as="font" href="/fonts/LiberationMono.woff2" type="font/woff2" crossorigin="anonymous">
|
||||||
|
<link rel="preload" as="font" href="/fonts/DroidSans.woff2" type="font/woff2" crossorigin="anonymous">
|
||||||
|
|
||||||
|
<link rel="preload" href="{{ "main.min.css" | relURL }}" as="style">
|
||||||
<link rel="stylesheet" href="{{ "main.min.css" | relURL }}" media="screen">
|
<link rel="stylesheet" href="{{ "main.min.css" | relURL }}" media="screen">
|
||||||
|
|
||||||
|
<link rel="preload" href="{{ "custom.css" | relURL }}" as="style">
|
||||||
<link rel="stylesheet" href="{{ "custom.css" | relURL }}" media="screen">
|
<link rel="stylesheet" href="{{ "custom.css" | relURL }}" media="screen">
|
||||||
|
|
||||||
{{ with .OutputFormats.Get "rss" -}}
|
{{ with .OutputFormats.Get "rss" -}}
|
||||||
|
|
|
@ -50,6 +50,11 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.badge-placeholder {
|
||||||
|
display: inline-block;
|
||||||
|
min-width: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
@mixin spin($duration) {
|
@mixin spin($duration) {
|
||||||
animation: spin $duration ease infinite;
|
animation: spin $duration ease infinite;
|
||||||
@keyframes spin {
|
@keyframes spin {
|
||||||
|
|
Loading…
Reference in New Issue