Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kmorton1988 committed Jan 5, 2021
0 parents commit ffc16b7
Show file tree
Hide file tree
Showing 15 changed files with 72 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/hugo-theme-learn"]
path = themes/hugo-theme-learn
url = https://github.com/matcornic/hugo-theme-learn.git
6 changes: 6 additions & 0 deletions archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

12 changes: 12 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
baseURL = "http://localhost/"
languageCode = "en-US"
title = "/r/SelfHosted Official Wiki"
theme = "hugo-theme-learn"

[params]
themeVariant = "green"
description = "The official wiki for the reddit /r/selfhosted community"
titleSeparator = "| |"

[outputs]
home = [ "HTML", "RSS", "JSON"]
3 changes: 3 additions & 0 deletions content/Contribution/Adding a Page/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
Title: Adding a Page
---
3 changes: 3 additions & 0 deletions content/Contribution/File Structure/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: File Structure
---
4 changes: 4 additions & 0 deletions content/Contribution/Modify a Page/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: "Modify a Page"
---

5 changes: 5 additions & 0 deletions content/Contribution/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: Contribution Guidelines
---

This guide aims to showcase how to contribute to this wiki, including best practices, pull requests, adding and editing articles and content, and file structure.
3 changes: 3 additions & 0 deletions content/Guides/Webservers/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
Title: Webservers
---
7 changes: 7 additions & 0 deletions content/Guides/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Guides
---

# Guides

Find the link to your desired guide below!
22 changes: 22 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: /r/Selfhosted Official Wiki
---

# /r/SelfHosted Official Wiki
___

## Welcome to the Wiki
We welcome you to explore the pages here and familiarize yourself with the layout of the wiki. If you have any suggestions for better/alternative organization methods, or feedback/questions in general about the wiki, feel free to [reach out](https://www.reddit.com/message/compose/?to=/r/selfhosted) to the modertors of the subreddit.

### Getting Started

Here are a couple articles about the best ways to get started, based on what you're looking to accomplish.

* Learn about what self-hosting is
* Learn about hosting websites
* Learn about using reverse proxies
* Learn about self-hosted alternatives to popular services and providers
* Learn about the most common ways to self-host



1 change: 1 addition & 0 deletions layouts/partials/favicon.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<link rel="shortcut icon" href="/images/favicon.png" type="image/x-icon" />
2 changes: 2 additions & 0 deletions layouts/partials/logo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<img src="/images/logo.png" alt="Selfhosted Logo" height="100px" />
<h5>/r/Selfhosted Official Wiki</h5>
Binary file added static/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions themes/hugo-theme-learn
Submodule hugo-theme-learn added at 0c0b90

0 comments on commit ffc16b7

Please sign in to comment.