Merge pull request #39 from atomtigerzoo/nicer-defaults
Some - hopefully - nicer defaults
This commit is contained in:
commit
601c31c949
|
@ -1,3 +1,9 @@
|
|||
baseurl = "/"
|
||||
languageCode = "en-us"
|
||||
title = "My New Hugo Site"
|
||||
languageLang = "en"
|
||||
title = "My new Victor-Hugo site"
|
||||
|
||||
# RSS, categories and tags disabled for an easy start
|
||||
# See configuration options for more details:
|
||||
# https://gohugo.io/getting-started/configuration/#toml-configuration
|
||||
disableKinds = ["RSS", "taxonomy", "taxonomyTerm"]
|
||||
|
|
|
@ -2,4 +2,8 @@
|
|||
|
||||
<h1>Hugo with Gulp, PostCSS and Webpack</h1>
|
||||
|
||||
<p>
|
||||
Hooray 🎉 - you've built this with <a href="https://github.com/netlify/victor-hugo">Victor-Hugo</a>!
|
||||
</p>
|
||||
|
||||
{{ partial "footer" . }}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<script src="/app.js"></script>
|
||||
<script src="app.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<html lang="{{ $.Site.Language.Lang }}">
|
||||
<head>
|
||||
<title>Hugo with Gulp and Webpack</title>
|
||||
<link rel="stylesheet" href="/css/main.css"/>
|
||||
<meta charset="utf-8">
|
||||
<base href="{{ $.Site.BaseURL }}">
|
||||
<title>{{ $.Site.Title }}</title>
|
||||
<link rel="stylesheet" href="css/main.css"/>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
Define your resets here or use something like Normalize.css if you like
|
||||
*/
|
||||
|
||||
html,
|
||||
body{
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
|
|
@ -1 +1,14 @@
|
|||
/*
|
||||
You can use import statements to include partials:
|
||||
*/
|
||||
@import "imports/reset.css";
|
||||
|
||||
|
||||
/*
|
||||
Or add your statements here:
|
||||
*/
|
||||
body{
|
||||
font-family: sans-serif;
|
||||
font-size: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
|
|
@ -1 +1,4 @@
|
|||
// JS Goes here - ES6 supported
|
||||
|
||||
// Say hello
|
||||
console.log("🦊 Hello! Edit me in src/js/app.js");
|
||||
|
|
Reference in New Issue