mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
Add temporary Hugodocs.info site migration page
This commit is contained in:
committed by
Anthony Fok
parent
5004ef61cf
commit
5c38329755
@@ -31,7 +31,6 @@ stepAnalysis = true
|
||||
title = "Hugo"
|
||||
|
||||
# Change this once you've created your theme
|
||||
theme = "gohugoioTheme"
|
||||
|
||||
# Set to true to convert mysite/section/ to mysite/section.html
|
||||
uglyURLs = false
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="/css/style.min.css">
|
||||
<title>Hugo Docs is Moving</title>
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
min-width: 100vw;
|
||||
max-width: 100vw;
|
||||
font-size:16px;
|
||||
}
|
||||
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
font-family: 'Avenir', 'Avenir Next', 'helvetica neue';
|
||||
}
|
||||
main,.main {
|
||||
display:block;
|
||||
width:90%;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
min-height:90vh;
|
||||
max-width:800px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top:2em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main>
|
||||
{{ block "main" . }}
|
||||
{{ partial "temp-closing.html" . }}
|
||||
{{ end }}
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,3 @@
|
||||
{{ define "main" }}
|
||||
{{ partial "temp-closing.html" . }}
|
||||
{{ end }}
|
||||
@@ -0,0 +1,3 @@
|
||||
{{ define "main" }}
|
||||
{{ partial "temp-closing.html" . }}
|
||||
{{ end }}
|
||||
@@ -0,0 +1,2 @@
|
||||
{{ define "main" }}
|
||||
{{ end }}
|
||||
@@ -0,0 +1,4 @@
|
||||
<header>
|
||||
<h1>Hugodocs.info is moving...</h1>
|
||||
<p>We appreciate your patience as we migrate the content from hugodocs.info to the new GitHub organization for Hugo. To check the currently published, <em>official</em> documentation, visit <a href="https://gohugo.io">https://gohugo.io</a>. Stay tuned for the rollout of the new docs, and thank you for your support of Hugo!</p>
|
||||
</header>
|
||||
Reference in New Issue
Block a user