Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.hugo_build.lock
/public/
/resources/_gen/
17 changes: 17 additions & 0 deletions hugo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
languageCode: en
title: GitGitGadget
relativeURLs: true
uglyURLs: true
disableKinds:
- taxonomy
markup:
goldmark:
renderer:
unsafe: true
module:
mounts:
- source: content
target: content
params:
hugo_version: 0.145.0
71 changes: 71 additions & 0 deletions layouts/_default/baseof.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Git for Windows</title>
<meta name="description" content="We bring the awesome Git VCS to Windows">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700">
<link rel="stylesheet" href="css/pack.css">
<style type="text/css">
body {
color: #FFF;
}

h1 {
text-align: center;
}

article p,h3,ul {
margin-left: auto;
margin-right: auto;
width: 65%;
}
</style>
<link rel="shortcut icon" href="favicon.ico">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.js"></script>
<![endif]-->
</head>
<body>
<footer>
<div class="content">
<ul class="list-unstyled">
<li><a href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a></li>
<li><a href="https://github.com/git-for-windows/git" target="_blank">Repository</a></li>
<li><a href="http://groups.google.com/group/git-for-windows" target="_blank">Mailing List</a></li>
</ul>
<a href="index.html"><h1 class="gittext lowercase">Git for Windows</h1></a>
<div class="stud"></div>
</div>
</footer>
<section class="details">
<article>
{{ block "main" . }}
{{ .Content }}
{{ end }}
</article>
</section>
<footer>
<div class="content">
<ul class="list-unstyled">
<li><a href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a></li>
<li><a href="https://github.com/git-for-windows/git" target="_blank">Repository</a></li>
<li><a href="http://groups.google.com/group/git-for-windows" target="_blank">Mailing List</a></li>
</ul>
<a href="index.html"><h1 class="gittext lowercase">Git for Windows</h1></a>
<div class="stud"></div>
</div>
</footer>
<script src="js/pack.js"></script>
<script>
$(document).ready(function() {
$(".fancybox-thumb").fancybox({
padding: 0
});
});
</script>
</body>
</html>
4 changes: 4 additions & 0 deletions layouts/_default/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{ define "main" }}
{{ .Content }}
{{ end }}

4 changes: 4 additions & 0 deletions layouts/_default/single.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{ define "main" }}
{{ .Content }}
{{ end }}