-
Notifications
You must be signed in to change notification settings - Fork 0
Submissions Guidelines
James Green edited this page May 5, 2022
·
1 revision
HackerUnderDev is a blog built on Hugo, hosted on Netlify, and stored on Github.
Guest authors are invited to create additional content for the site. The process will be centered around Github's code management processes
- Clone the HackerUnderDev repo to your local development machine.
- Originally created on a windows machine but only pre-requirements is git and Hugo, so mac and linux should work as well.
- Follow the main README.md file to set up a local instance of the Hugo site
TL;DR follow Github Flow
- Create a new branch to track your contributions
- Write your content
- Add a "post" markdown file in the /content/post/ directory, (please follow the naming style)
- Optional: Add static content like images to a new directory specific to the post in /static/images
- Do not modify existing posts, static pages, or themes unless previously approved by original author or repo owner
- Review the content locally by running
hugo serve - Create a pull request to merge the new branch to the master branch
- Respond to any comments and address feedback
- Get approval from repo owner
- Merge the pull request
- Once merged to master, Netlify will automatically redeploy after detecting the changes and the live site will reflect the new content
There are certain attributes that Hugo expects at the top of each post file. Be sure to include them!
---
author: JSmith2022
categories:
- Walkthroughs
tags:
- SomethingCool
- ToolUsed
- InfosecProcess
- RelatedPublicEntity
ct_period_last_updated:
- default
date: "2022-05-05T21:44:27Z"
title: My blog post example title
url: /blog-post-example/
---
Start of the post...
Explanation of each issue:
- Author: handle or name
- Categories: Please use existing categories
- Tags: A list of related keywords
- ct_period...: keep as default
- date: Timestamp format "YYYY-MM-DDTHH:MM:ssZ"
- title: Post's title as displayed
- url: URL path for post like https://hackerunder.dev/{url}