Hazel is a personal attempt to create a self hosted web application that supports easy document composition with a wiki-like work flow.
Navigating to a page that doesn't exist will prompt you to create the content for that page. Cross-document association is as simple as
entering the title of the document, and the link is auto generated.
Continue Reading
For part 2 of our Let's Build : A static blog with Harp, we are going to
- Update our _layout.ejs with a cleaner layout using EJS Partials
- Utilize
_data.json
metadata files for more granular, per-page metadata
- Create a few blog posts
- Dynamically list our blog posts on our
index.ejs
home page.
- Update our navigation to display active states
Continue Reading
As part of my first Let's Build, we are going to build a static blog
site utilizing Harp. Harp is a Node based toolset
that includes a static web server and preprocessing / compilation
tools to take a variety of formats (EJS,
Markdown, Jade, LESS, Sass,
CoffeeScript) and convert them into their compiled / static assets
(HTML, CSS, and Javascript).
Continue Reading
Often times, for security reasons, it is important to block public access to Umbraco and the Umbraco log-in page.
One simple solution is to add an IIS rewrite rule within the web.config
file that whitelists access to the Umbraco URL.
Continue Reading