https://github.com/jordanknott/homepage
Simple and clean start page for browsers
https://github.com/jordanknott/homepage
Last synced: about 1 year ago
JSON representation
Simple and clean start page for browsers
- Host: GitHub
- URL: https://github.com/jordanknott/homepage
- Owner: JordanKnott
- License: mit
- Created: 2018-11-05T19:43:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T23:37:32.000Z (over 3 years ago)
- Last Synced: 2025-03-28T04:12:55.847Z (about 1 year ago)
- Language: TypeScript
- Size: 9.1 MB
- Stars: 5
- Watchers: 2
- Forks: 6
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Arcadia Homepage
A homepage that uses a small golang program to allow for easy managment of links.
Links are defined in `config.toml`. The general format of the config file is as follows:
There is an example config called `config.example.toml` in the root directory.
``` toml
[[icon-links]] # An icon link. Uses font awesome 4 to display the icons
url = "https://reddit.com"
icon = "reddit"
[[columns.example]] # You can have up to four unique columns. The name after the dot is the name of the column ("example")
url = "https://example.org"
label = "Example" # this is what is actually displayed for the link
[[columns.example]] # this is how to add another link to a column
url = "http://github.com"
label = "GitHub"
```