LearnGetting Started with Static Sites

   
Avatar

Leon Barnard
writes on June 21, 2016

You may have heard the buzz about so-called “static” websites. In this post, I’ll tell you what they are, what’s the big deal, and what you need to know to build one.

The First Static Sites

In the early years of the web, when HTML was the only language for making websites, all sites were “static,” consisting of a simple hand-off of text and image files between a network server and a program on your computer. Opening a website was essentially just viewing files on someone else’s computer.

This was fine when sites were small and looked like this:

Space Jam website
(Source)

But because websites consisted of files that linked to other files, whenever web developers wanted to add a page, change a link, or rename something they had to edit each file that referenced the file to be changed. As sites got increasingly complex this became untenable.

Enter Server-Side Languages

To reduce this manual effort, software designed to run on network servers was created. This software could interpret powerful new web languages, such as CGI, ASP, and PHP, and output them to HTML that the browser could read.

PHP is one of the most popular server-side languages today. It can do many things that HTML can’t, like include the content of one file inside another or perform mathematical calculations.

The trade-off is that when you write a website in PHP, the code you upload to the server needs to be translated into HTML before it can be shown to the reader (since HTML is what the browser knows).

Here is an example of what happens when you view a WordPress site (which relies on PHP):


(Source)

Instead of HTML, the PHP file on the server looks something like this:

<?php 
$x = "Hello world!";
$y = 'Hello world!';

echo $x;
echo "<br>"; 
echo $y;
?>

The web server translates it to HTML before sending it to the browser. This takes longer than if the server just had plain HTML pages on it.

Related Reading: Should I Learn HTML Before Python?

Why Static Sites Are Back

One reason that static sites have re-emerged is because JavaScript (which doesn’t need to be interpreted by the server) is taking over many of the duties that server-side languages used to provide. Thanks to frameworks like jQuery, Angular, and React, today’s “static” pages can do a lot of very dynamic things (our contact us page, for example, is a static page created using React).

But the main difference between today’s static sites and the original static sites of the 90s is the existence of new static site generators (which I’ll explain below) that perform a translation step similar to server-side software, but that happens before uploading, resulting in static files on the server.

Static site files require no translation processing from the server, so they can be handed over to the web browser on your computer (a.k.a. the client) as-is, which is fast and uncomplicated.

There’s a bit more to it, but let’s jump right into how to create a static site.

What You Need to Create a Static Site

To create a static site you should have a basic knowledge HTML and CSS, and be open to learning a few new tools.

The static site workflow looks like this:

There are three main components:

  1. A Markup Language
  2. A Style Language
  3. A Processing Tool (a.k.a. “Generator”)

Each component has several options, but the general workflow should be pretty much the same.

Markup Languages

Wait, you say, isn’t HTML the markup language for the web? Yes, but with static site generators you can use a variety of markup languages that are compiled (converted) to HTML. You can think of these languages as a kind of shorthand for HTML.

There are two main reasons why you would use a markup language other than HTML:

  1. You want something more powerful (akin to a server-side language)
  2. You want something that’s easier to write and/or read

Let’s look at one that gives you both, called Jade.

In Jade, you can write this:

doctype html
html(lang="en")
  head
    title= pageTitle
  body
    h1 Jade - node template engine
    #container.col
      if youAreUsingJade
        p You are amazing
      else
        p Get on it!
      p.
        Jade is a terse and simple
        templating language with a
        strong focus on performance
        and powerful features.

Instead of this:

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Jade</title>
  </head>
  <body>
    <h1>Jade - node template engine</h1>
    <div id="container" class="col">
      <p>You are amazing</p>
      <p>
        Jade is a terse and simple
        templating language with a
        strong focus on performance
        and powerful features.
      </p>
    </div>
  </body>
</html>

Notice that it doesn’t require the HTML-style angle brackets (e.g., <tag></tag>). It relies on the indentation hierarchy to determine which elements contain others. This makes it more compact and easy to read.

Also, in the example above there is an if-else statement, like those found in server-side programming languages. Not shown is the ability include (“extend”) one Jade file in another. Both of these are things that plain HTML can’t do.

Other languages that are similar include HAML, Slim, and EJS.

Another popular language for writing simple HTML is Markdown (which I used to write this post). It looks like this:

# this is a big heading

this is a regular paragraph of text with a [link](http://example.com).

here is a list:

* item one
* item two

It’s important to note that Markdown is not a complete replacement for HTML like Jade and HAML are. Markdown is mostly for the content part of your HTML file, the stuff that goes inside the <body> tags.

Markdown is best for blog posts, documentation articles, and other content that is mostly text. If you use Markdown you’ll probably also need to create some “templates” using a language like Liquid or Handlebars. These templates provide the structure around the content that the Markdown goes into.

In summary, markup languages like those listed above provide the following advantages over HTML:

  • Ability to insert references to other files
  • Templates for common page types
  • Simplified syntax for better readability

Style Languages

Similar to the HTML variations listed above, CSS has its own alternatives that extend the basic functionality of CSS for added power and flexibility. Fortunately, there are fewer options here.

The two most used are SASS and Less. They are quite similar. We’ll use SASS in the examples.

The benefits and features are similar to markup languages. The ability to use variables is especially useful. You can define all your colors and fonts as variables, for example, so that updating them is a snap. A few other CSS-specific benefits are automatic browser prefixing and minification and concatenation of files.

Variables in SASS look like this:

$font-stack:    Helvetica, sans-serif;
$primary-color: #333;

body {
  font: 100% $font-stack;
  color: $primary-color;
}

Which becomes this:

body {
  font: 100% Helvetica, sans-serif;
  color: #333;
}

Whenever you want to change the font and color you can just change the property of the variable. This can save a ton of time for large sites.

There are many more things that SASS can do. Learn SASS on Treehouse.

The Generator

Now to the thing that brings them all together. For this you’ll need to install a program on your computer to translate the markup and style code you write into HTML and CSS.

Some popular generators are Jekyll, Hugo, Harp, and Hammer.

There are a few considerations, such as:

  • What markup and style languages do you want to write in (not all generators support all languages)
  • The size of your site (affects how long compiling takes)
  • The type of website you’re building (Jekyll and Hugo are optimized for blogs, for example)
  • How comfortable you are with running terminal commands from a command line (many require them. Some, like Hammer, don’t.)

Static site generators typically run in the background while you write your markup and styles and compile to HTML and CSS when you save. You often don’t interact with them except to start and stop them.

Hugo running in the terminal
(Hugo running in the terminal)

Many also create a local web server (with a URL like “http://localhost:1234”) so that you can preview your site on your computer before uploading it.

Some text editors even have plugins (like this SASS plugin for Atom) that compile markup and style languages as you write, so you could even get away with not using a separate generator.

(For more on using Jekyll to create a blog, see this in-depth tutorial.)

Hosting

The final piece of the puzzle is finding a place to put your files on the web.

Good news! Hosting your static site on the web is probably easier than hosting a dynamic site. There are no requirements for the server to be running certain software (like PHP) or even have a specific operating system. This often means that hosting is cheaper, or even free, because the resources needed are fewer. If you already have a host that you like, you don’t need to change anything.

If you don’t already host your site somewhere, I suggest reading Using GitHub Pages To Host Your Website. Putting your files on GitHub allows you to track all the changes you make to your site and doesn’t require FTP. Amazon S3 is another popular option for static sites.

Also read: Creating Static Pages in Ruby on Rails

Static vs. Dynamic: Which is Better For You?

As with most things, the answer is that it depends.

Here are some pros and cons of static sites.

Pros:

  • Static websites generally load faster
  • Newer markup languages can be easier to write once you take the time to learn them
  • Fewer web server requirements and lower hosting costs

Cons:

  • A bit of a learning curve even if you’re already familiar with HTML and CSS
  • Transitioning from an existing site can be a challenge (some tips here)
  • Unclear which new technologies will continue to be supported in the long term

Regardless, these new technologies highlight a continuing trend toward lower barriers to entry for web developers. Languages like Jade and Markdown and technologies like GitHub facilitate more intuitive code writing and easier collaboration for the web.

Static sites may not revolutionize the web, but they are clearly an evolution of it. Hopefully this post has helped you to understand their basic principles and context. Your comments are welcome!

Looking to expand your coding skills? Get started today with the Treehouse 7-day free trial!

(Much thanks to Peldi and Stefano for the technical review!)


Leon Barnard is a writer and designer at Balsamiq. He contributes to the Balsamiq UX blog and curates the Balsamiq Champions blog about how and why people use Balsamiq Mockups.

Start learning to code today with a free trial on Treehouse.

GET STARTED NOW

Learning with Treehouse for only 30 minutes a day can teach you the skills needed to land the job that you've been dreaming about.

Get Started

9 Responses to “Getting Started with Static Sites”

  1. iftikhar ali on August 7, 2017 at 9:25 pm said:

    i will create any type of static website.
    TWEET TO FOLLOWERS http://www.fiverr.com/s/a656wz?utm_source=com.google.android.apps.docs_Mobile

  2. We Do Both I build sites on joomla but deploy them a static sites. Best of both worlds

  3. I love the idea of going with static and there are many clients that could really benefit. With regard to SEO, the speedy loading of web pages are becoming more and more critical everyday. As you mentioned, static sites usually load fast and there is much less possibility of problems. Also, more secure. I keep preaching to my clients, “not every site needs WordPress,” but going static is usually a tough sell.

    I love WP, but sometimes there’s just no need for it. Yes, I understand much can be done with site optimization and caching, but there’s so much more to consider!

  4. Thank you so much for this great post, very helpful and giving a lot of insight on the topic.

  5. Nice post. I personally am a big fan of static sites, although I realize they are not for everyone. I would also recommend checking out a few other less common static site generators such as Journey, Assemble, and Metalsmith. It’s a big world out there for people who want something different than Jekyll.

  6. Thanks for the article. It was really a great article and helpful for the web developers. I will surely share this to all the web developers. Please keep writing articles like this one. http://jrwebmd.com

  7. Peretros Kanon on June 29, 2016 at 9:17 am said:

    Thanks a lot Leon Barnard and Team Tree House. This article has given me the big picture perspective I needed on creating static websites. I was a bit confuse. Now I know what to do and where to focus my attention on in terms of sharpening my front-end development skills. Thanks again!

  8. Farzad YZ on June 27, 2016 at 8:47 pm said:

    I recently tested some of these generators such as jekyll and Hugo. Its somehow unclear what they are trying to do but as a global overview I’d rather choose static web pages cause the are a lot faster and would be easier to responsively designed templates.

  9. Excellent post! I would say that your post is very valuable for all web developers. Thanks for sharing with us.

Leave a Reply

You must be logged in to post a comment.

man working on his laptop

Are you ready to start learning?

Learning with Treehouse for only 30 minutes a day can teach you the skills needed to land the job that you've been dreaming about.

Start a Free Trial
woman working on her laptop