All Projects → spaghettiwews → Hugonews

spaghettiwews / Hugonews

Licence: gpl-2.0
hugo theme (based on https://news.ycombinator.com) for https://bookmarks.wews.co.zw

Projects that are alternatives of or similar to Hugonews

Hugo Theme Meme
You can’t spell aWEsoME without MEME! 😝
Stars: ✭ 459 (+1076.92%)
Mutual labels:  hugo-theme
Linkace
Your self-hosted bookmark archive. Free and open source.
Stars: ✭ 657 (+1584.62%)
Mutual labels:  bookmarks
Yub
yub.js - A command-line for the web
Stars: ✭ 10 (-74.36%)
Mutual labels:  bookmarks
Mainroad
Responsive, simple, clean and content-focused Hugo theme based on the MH Magazine lite WordPress theme
Stars: ✭ 509 (+1205.13%)
Mutual labels:  hugo-theme
Nighttab
A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.
Stars: ✭ 598 (+1433.33%)
Mutual labels:  bookmarks
Hugo Theme Stack
Card-style Hugo theme designed for bloggers
Stars: ✭ 720 (+1746.15%)
Mutual labels:  hugo-theme
Hugo Theme Introduction
Minimal, single page, smooth-scrolling theme for Hugo static site generator.
Stars: ✭ 441 (+1030.77%)
Mutual labels:  hugo-theme
Pinku
A Pinboard-to-buku importation utility
Stars: ✭ 30 (-23.08%)
Mutual labels:  bookmarks
Wowchemy Hugo Modules
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, build with widgets! 创建在线课程,学术简历或初创网站。
Stars: ✭ 6,093 (+15523.08%)
Mutual labels:  hugo-theme
Gata
Bookmarks made better
Stars: ✭ 17 (-56.41%)
Mutual labels:  bookmarks
Hugo Paper
🥛 A simple, clean, flexible Hugo theme
Stars: ✭ 538 (+1279.49%)
Mutual labels:  hugo-theme
Hugo Theme Hello Friend
Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!
Stars: ✭ 586 (+1402.56%)
Mutual labels:  hugo-theme
Hermit
A minimal & fast Hugo theme for bloggers
Stars: ✭ 762 (+1853.85%)
Mutual labels:  hugo-theme
Buku
🔖 Personal mini-web in text
Stars: ✭ 4,825 (+12271.79%)
Mutual labels:  bookmarks
Sublime Bookmarks
Sublime Text essential plugins and resources
Stars: ✭ 878 (+2151.28%)
Mutual labels:  bookmarks
Minimo
Minimo - Minimalist theme for Hugo
Stars: ✭ 453 (+1061.54%)
Mutual labels:  hugo-theme
Hugo Theme Jane
A readable & concise theme for Hugo
Stars: ✭ 669 (+1615.38%)
Mutual labels:  hugo-theme
Bookmark
A reading list for the programmer
Stars: ✭ 31 (-20.51%)
Mutual labels:  bookmarks
Gold Rush Bookmark
来我们的书签里淘点宝吧!Find some treasure in our bookmarks!
Stars: ✭ 30 (-23.08%)
Mutual labels:  bookmarks
Hugo Theme Terminal
A simple, retro theme for Hugo
Stars: ✭ 832 (+2033.33%)
Mutual labels:  hugo-theme

hugonews

a hugo theme for a personal bookmarking website

hugonews is a Hugo theme that I primarily use for my absurd bookmarking website - https://bookmarks.wews.co. Its aesthetic was inspired by that of Hacker News

Getting Started

Prerequisites

  1. Hugo
  2. Git

Usage

  1. Create a new Hugo website

    hugo new site <sitename>
    
  2. Initialise the website source folder as a Git repository

    cd <sitename> && git init
    
  3. Add the hugonews theme as a submodule to your website repo

    git submodule add https://github.com/spaghettiwews/hugonews.git themes/hugonews
    
  4. Set your site theme to hugonews by editing config.toml and adding the following line theme = "hugonews"

    baseURL = "http://example.org/"
    languageCode = "en-us"
    title = "My New Hugo Site"
    theme = "hugonews"
    
  5. Now, from the root of your website, create a bookmark item using the hugo CLI

    hugo new items/dark-mode-website-css.md
    
  6. Edit the newly created file to add the necessary metadata. The file will be in your content directory in /content/items/

    ---
    title: "Dark mode in a website with CSS"
    date: 2019-10-09T12:13:32+02:00
    itemurl: "https://tombrow.com/dark-mode-website-css"
    sites: "tombrow.com"
    tags: ["frontend", "css", "dark mode"]
    draft: false
    ---
    
  7. Repeat steps 5 and 6 to add new/more bookmarks.

  8. Build the site using hugo and deploy the /public folder following any one of the guides that can be found in the Hugo documentation (Hosting & Deployment).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].