# Static Blogs with Prember and Markdown

By Robbie Wagner 04.04.2018

## Introduction
Static blogs are becoming increasingly popular due to their speed and simplicity. In this article, we will explore how to build static blogs using Prember and Markdown.

## What is Prember?
Prember is a tool that allows you to pre-render your Ember.js applications into static HTML files. This can significantly improve the performance of your blog.

## Benefits of Using Markdown
Markdown is a lightweight markup language that makes it easy to format text. It allows writers to focus on content rather than formatting.

## Getting Started
1. **Install Prember**
   You can add Prember to your Ember project using npm:
   ```bash
   npm install --save ember-cli-prember
   ```

2. **Create Your Markdown Files**
   Store your blog posts in a designated directory with `.md` extension.

3. **Configure Prember**
   Add the necessary configurations to your `ember-cli-build.js`.
   
4. **Build Your Blog**
   Run the build command to generate static files.

## Conclusion
Using Prember with Markdown transforms your Ember.js applications into fast-loading static blogs. This combination provides a seamless writing experience and improves performance.
