Skip to content

Commit

Permalink
first cut
Browse files Browse the repository at this point in the history
  • Loading branch information
decentralgabe committed Dec 24, 2021
0 parents commit dc0acab
Show file tree
Hide file tree
Showing 10 changed files with 104 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.hugo_build.lock
.DS_Store
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "themes/ananke"]
path = themes/ananke
url = https://github.com/theNewDynamic/gohugo-theme-ananke.git
[submodule "themes/terminal"]
path = themes/terminal
url = https://github.com/panr/hugo-theme-terminal.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
---

71 changes: 71 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
baseURL = 'http://ecomint-nodes.com'
languageCode = "en-us"
theme = "terminal"
paginate = 5

[params]
# dir name of your main content (default is `content/posts`).
# the list of set content will show up on your index page (baseurl).
contentTypeName = "posts"

# ["orange", "blue", "red", "green", "pink"]
themeColor = "green"

# if you set this to 0, only submenu trigger will be visible
showMenuItems = 0

# show selector to switch language
showLanguageSelector = false

# set theme to full screen width
fullWidthTheme = false

# center theme with default width
centerTheme = true

# if your resource directory contains an image called `cover.(jpg|png|webp)`,
# then the file will be used as a cover automatically.
# With this option you don't have to put the `cover` param in a front-matter.
autoCover = true

# set post to show the last updated
# If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated
showLastUpdated = false

# set a custom favicon (default is a `themeColor` square)
# favicon = "favicon.ico"

# Provide a string as a prefix for the last update date. By default, it looks like this: 2020-xx-xx [Updated: 2020-xx-xx] :: Author
# updatedDatePrefix = "Updated"

# set all headings to their default size (depending on browser settings)
# it's set to `true` by default
# oneHeadingSize = false


[params.twitter]
# set Twitter handles for Twitter cards
# see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started#card-and-content-attribution
# do not include @
creator = "theecomint"
site = "http://ecomint.org"

[languages]
[languages.en]
languageName = "English"
title = "Terminal"
subtitle = "A simple, retro theme for Hugo"
owner = ""
keywords = ""
copyright = ""
menuMore = "Show more"
readMore = "Read more"
readOtherPosts = "Read other posts"
newerPosts = "Newer posts"
olderPosts = "Older posts"
missingContentMessage = "Page not found..."
missingBackButtonLabel = "Back to home page"

[languages.en.params.logo]
logoText = "EcoMint Public Nodes"
logoHomeLink = "/"
9 changes: 9 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
![ecomint logo](/static/tree.png)


These [Tezos](http://tezos.com) nodes are provided by the [EcoMint](http://ecomint.org) team free of charge. No guarantees.

| Network | Link |
|:-----------: |:------------------------------------------------------------------: |
| Mainnet | [mainnet.ecomint-nodes.com](http://mainnet.ecomint-nodes.com:8732) |
| Hangzhounet | [testnet.ecomint-nodes.com](http://testnet.ecomint-nodes.com:8732) |
7 changes: 7 additions & 0 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{{ define "main" }}
<main aria-role="main">
<div class="homepage-content">
{{.Content}}
</div>
</main>
{{ end }}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"Target":"ananke/css/main.min.css","MediaType":"text/css","Data":{}}
Binary file added static/tree.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/terminal
Submodule terminal added at 384671

0 comments on commit dc0acab

Please sign in to comment.