hugo

Fork of github.com/gohugoio/hugo with reverse pagination support

git clone git://git.shimmy1996.com/hugo.git

index.md (3650B)

    1 ---
    2 
    3 title: 1Password Support
    4 date: 2018-02-22
    5 description: "Showcase: \"Compiles 400 pages in five languages in the blink of an eye.\""
    6 siteURL: https://support.1password.com/
    7 byline: "[Mitch Cohen](https://github.com/mitchchn), Documentation Team Lead"
    8 aliases: [/showcase/1password/]
    9 
   10 ---
   11 
   12 At 1Password, we used to go through a different documentation platform every month: blog engines, ebooks, wikis, site generators written in Ruby and JavaScript. Each was inadequate in its own special way. Then we found **Hugo**. We made one last switch, and we're glad we did.
   13 
   14 ### Not all static site generators are created equal
   15 
   16 Finding a tool that will make your customers, writers, designers, _and_ DevOps team happy is no easy task, but we managed it with Hugo:
   17 
   18 **Hugo is static**. We're a security company, so we swear by static sites and use them wherever possible. We feel much safer pointing customers at HTML files than at a complicated server which needs to be hardened.
   19 
   20 **Hugo is Go**. We love the Go programming language at 1Password, and we were delighted to learn that Hugo used the same Go template syntax that our designers and front-end developers had already mastered.
   21 
   22 **Hugo is FAST**. Our previous static site generator took nearly a minute to compile our (then much smaller) site. Developers might be used to this, but it wasn't cutting it for writers who wanted to see live previews of their work. Hugo did the same job in milliseconds, and to this day compiles 400 pages in five languages in the blink of an eye.
   23 
   24 **Hugo is flexible**. Thanks to Hugo's content and layout system, we were able to preserve our existing file and folder structure and port our entire production site in a few days. We could then create new content types that weren't possible before, like these snazzy [showcases](https://support.1password.com/explore/extension/).
   25 
   26 **Hugo is great for writers**. Our documentation team was already comfortable with Markdown and Git and could start creating content for Hugo with zero downtime. Once we added shortcodes, our writers were able to dress up articles with features like  [platform boxes](https://support.1password.com/get-the-apps/) with just a bit of new syntax.
   27 
   28 **Hugo has an amazing developer community**. Hugo updates are frequent and filled to the brim with features and fixes. As we developed the multilingual version of our site, we submitted PRs for features we needed and were helped through the process by [@bep](https://github.com/bep) and others.
   29 
   30 **Hugo is simple to deploy**. Hugo has just the right amount of configuration options to fit into our build system without being too complicated.
   31 
   32 ### Tech specs
   33 
   34 * [1Password Support](https://support.1password.com) uses Hugo with a custom theme. It shares styles and some template code with [1Password.com](https://1password.com), which we also moved to Hugo in 2016.
   35 * Code and articles live in a private GitHub repository, which is deployed to a static content server using Git hooks.
   36 * Writers build and preview the site on their computers and contribute content using pull requests.
   37  * We use Hugo's [multilingual support](/content-management/multilingual/) to build the site in English, Spanish, French, Italian, German, and Russian. With the help of Hugo, 1Password Support became our very first site in multiple languages.
   38 * Our [contact form](https://support.1password.com/contact) is a single-page React app. We were able to integrate it with Hugo seamlessly thanks to its support for static files.
   39 * The one part of the support site which is not static is our search engine, which we developed with Elasticsearch and host on AWS.