Hugo

Hugo

Hugo is a tool for creating static websites. How is this different from a dynamic website? you may be wondering. While a static website is delivered to clients in the same way that is stored, dynamic websites build pages using an application server. As a consequence, static and dynamic web pages have contrasting properties:

Criterion Static Dynamic
Loading Times Fast Slow
Required Expertise for Maintenance High Low
Security High Potentially Low
Potential for User Interaction Low High

Let’s take a look at these aspects in more detail.

Loading times

Static websites can typically be loaded much faster. Why? Displaying a static page essentially only requires loading the associated HTML file as well as any additional resources (images etc). For a dynamic site, the same data have to be loaded but the dynamic content has to be loaded additionally. Since this type of content typically requires interacting with a database, it takes some time until the data have been loaded and the final page is ready.

Required expertise

Maintaining a static site is slightly harder than maintaining a dynamic site. This is because dynamic websites are usually based on content management systems (CMSs) such as WordPress. CMSs are very easy to use because content can be created in what-you-see-is-what-you-get editors. For static websites, on the other hand, such editors are not available and it is necessary to work with data in a more raw format such as Markdown, which merely specifies how the content is supposed to look. So, if you are not a person that shies away from some technicalities, static web pages are fine. But if you don’t like the idea of working in some form of code editor, then a static site is not for you.

Security

With regard to security, static sites are definitely the safer alternative. Since dynamic web sites rely on several applications that run in unison (e.g. CMS, database, additional scripts) it is more likely that one of them is vulnerable to attacks. For example, there is a long list of security vulnerabilities for Wordpress, so it is key to continually update the software to stay safe. With static sites, on the other hand, there is no software that is running in the background, so there are no vulnerabilities and it is not necessary to continually update.

Potential for User Interaction

The low potential for user interaction is the biggest downside to static websites. For example, a dynamic website may display the five most popular posts, show a poll where users can participate, or may ask for users to upload their own content. These dynamic elements can hardly be integrated into static websites. For example, for something simple as a commenting systems, many static web sites rely on external services such as Disqus. However, there are also alternatives such as Staticman.

Posts about Hugo

Since this blog has been created with Hugo, the following posts deal with the framework.

Implementing Polls Using Staticman

Implementing Polls Using Staticman

0
In a previous post, I have described how to set up your own Staticman instance and use it to run a commenting system. Since Staticman is not limited to bringing comments to static sites, I decided to implement polls with Staticman as well. Overview In order to get polls working, the following steps need to be followed: Adjust your Staticman configuration to include a configuration for polls Create two subfolders in your data folder: one for storing the votes and one for setting up the polls Implement the Hugo template logic for the polls in your partials Implement JavaScript/CSS to allow for participating in the poll and viewing the results Staticman configuration Configuring Staticman for polls is relatively straight-forward.
Staticman: An Alternative to Disqus for Comments on Static Sites

Staticman: An Alternative to Disqus for Comments on Static Sites

10

Comments are an important aspect of many websites, particularly blogs, whose success depends on their ability to create communities. However, including comments is inherently more difficult for static websites than for dynamic websites (e.g. managed through Wordpress). With Hugo, comments can be easily integrated via Disqus. The disadvantage, however, is that foreign JavaScript code needs to be executed and that the comments are not part of the page itself. Here, I will explain how comments can be integrated into a web page using Staticman.

Setting Noindex for Hugo Taxonomy Pages

Setting Noindex for Hugo Taxonomy Pages

0

Taxonomies in Hugo are a great way to structure information provided by a blog. For search engine optimization (SEO) purposes, however, the existence of duplicate content on a site can be a problem. If you think this is the case for your site, then you can use the noindex meta tag for all of the taxonomy sites that do not provide unique content. This post shows you how to get it done.

5 Steps to Create a Blog with Hugo and R

5 Steps to Create a Blog with Hugo and R

2

Static blogs are a great alternative to dynamic blogs that are based on content management systems such as WordPress. While both approaches have their up- and downsides, I chose the static approach for this blog because it’s the easiest way to bring R code to the web. In the following, I will show how you can create a static blog in only five steps.