-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
checkpoint, can't get navbar visible
- Loading branch information
Showing
27 changed files
with
267 additions
and
199 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
title = '{{ replace .File.ContentBaseName "-" " " | title }}' | ||
date = {{ .Date }} | ||
draft = true | ||
+++ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
+++ | ||
title = "Freenet: Frequently Asked Questions" | ||
name = "FAQ" | ||
+++ | ||
|
||
- [What is Freenet?](#what-is-freenet) | ||
|
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
baseURL = 'https://freenet.org/' | ||
languageCode = 'en-us' | ||
title = 'Freenet' | ||
|
||
theme = 'freenet' | ||
|
||
[menu] | ||
|
||
[[menu.main]] | ||
name = "Home" | ||
url = "/" | ||
weight = 1 | ||
|
||
[[menu.main]] | ||
name = "About" | ||
url = "/about/" | ||
weight = 2 | ||
|
||
[[menu.main]] | ||
name = "Community" | ||
url = "/about/community/" | ||
weight = 3 | ||
parent = "About" | ||
|
||
[[menu.main]] | ||
name = "Philosophy" | ||
url = "/about/philosophy/" | ||
weight = 4 | ||
parent = "About" | ||
|
||
[[menu.main]] | ||
name = "Dev" | ||
url = "/dev/" | ||
weight = 5 | ||
|
||
[[menu.main]] | ||
name = "Build" | ||
url = "/dev/apps/" | ||
weight = 6 | ||
parent = "Dev" | ||
|
||
[[menu.main]] | ||
name = "Platform" | ||
url = "/dev/platform/" | ||
weight = 7 | ||
parent = "Dev" | ||
|
||
[[menu.main]] | ||
name = "FAQ" | ||
url = "/faq/" | ||
weight = 8 | ||
|
||
[[menu.main]] | ||
name = " Blog" | ||
url = "/blog/" | ||
weight = 9 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Theme Name | ||
|
||
## Features | ||
|
||
## Installation | ||
|
||
## Configuration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
title = '{{ replace .File.ContentBaseName "-" " " | title }}' | ||
date = {{ .Date }} | ||
draft = true | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
body { | ||
color: #222; | ||
font-family: sans-serif; | ||
line-height: 1.5; | ||
margin: 1rem; | ||
max-width: 768px; | ||
} | ||
|
||
header { | ||
border-bottom: 1px solid #222; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
footer { | ||
border-top: 1px solid #222; | ||
margin-top: 1rem; | ||
} | ||
|
||
a { | ||
color: #00e; | ||
text-decoration: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log('This site was generated by Hugo.'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
baseURL = 'https://example.org/' | ||
languageCode = 'en-us' | ||
title = 'My New Hugo Site' | ||
|
||
|
||
[module] | ||
[module.hugoVersion] | ||
extended = false | ||
min = "0.116.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{{ define "main" }} | ||
{{ .Content }} | ||
{{ range site.RegularPages }} | ||
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> | ||
{{ .Summary }} | ||
{{ end }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{{ define "main" }} | ||
<h1>{{ .Title }}</h1> | ||
{{ .Content }} | ||
{{ range .Pages }} | ||
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> | ||
{{ .Summary }} | ||
{{ end }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{{ define "main" }} | ||
<h1>{{ .Title }}</h1> | ||
|
||
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} | ||
{{ $dateHuman := .Date | time.Format ":date_long" }} | ||
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time> | ||
|
||
{{ .Content }} | ||
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>Copyright {{ now.Year }}. All rights reserved.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title> | ||
<link rel="stylesheet" href="/css/bulma.min.css"> |
Oops, something went wrong.