Bulma is a clean, modern CSS framework for rapid prototyping of content-focused websites. Use this theme to start using Bulma in your new Bridgetown site quickly, while preserving all of the advanced customization possibilities as if you configured Bulma manually.
Bulmatown requires Bridgetown v1.0 or later (for >= 1.2), or v0.15 or later (~1.1)
To install Bulmatown while creating a new Bridgetown site:
bridgetown new mysite --use-sass -a https://github.com/whitefusionhq/bulmatown
Or to add it to your existing Bridgetown site:
bundle exec bridgetown apply https://github.com/whitefusionhq/bulmatown
A few other (optional) plugins you might be interested in installing:
The installation process will prompt you to configure your site to use Bulmatown automatically. However, if you decline those changes, you can inspect the example site in this repository.
Bulmatown comes with a few color variations out of the box. You can use the theme_variation
Sass variable to switch the variation. For example:
// frontend/styles/index.scss
$theme_variation: rust;
@import "~bulmatown/frontend/styles"
The available options are:
default
rust
fuchsia
fineart
Speaking of Sass variables, you can put all your custom Bulma variables right before the @import
statement and Bulma will pick up all the changes. You can even override any of the variables defined by Bulmatown out-of-the-box. Read the Bulma documentation for more information.
Bulmatown will automatically look for image
front matter variables in your pages and documents and display those in the hero banners and in the card component for post previews. Check out the bridgetown-cloudinary plugin for an easy way to add advanced image asset handling to your site.
If you wish, you can alter which variable is loaded for the cards and social embeds vs. the hero banners using metadata:
# src/_data/site_metadata.yml
bulmatown_theme:
image_sizes:
embed: image
hero: image_hero
In addition, for a fun way to add some sparkle to a hero banner with an image background, you can put rainbow_hero: true
in your front matter to display a nice colorful gradient.
To show author information at the top of a blog post, add authors.yml
to your data folder. For example:
# src/_data/authors.yml
jared:
name: Jared White
avatar: /images/jared-white-avatar.jpg
twitter: jaredcwhite
website: https://jaredwhite.com
Then simply add author: jared
to your post's front matter.
This will link to an /authors/<authorname>
URL. You can create a page at that URL manually, or you can auto-generate author archives using a Prototype Page. (See this example file.)
If you ever find yourself needing to override one or more of the layout templates or Liquid components provided by Bulmatown, you can use the bridgetown plugins cd
command to drill down into the gem and copy files out to your own site. For example:
# copy the layouts folder:
bundle exec bridgetown plugins cd Bulmatown/layouts
cp -r bulmatown $BRIDGETOWN_SITE/src/_layouts
exit
# copy the components folder:
bundle exec bridgetown plugins cd Bulmatown/components
cp -r bulmatown $BRIDGETOWN_SITE/src/_components
exit
Then you can go to the bulmatown
folder in your layouts or components folders and make the changes from there. Or instead of wholesale copying over bulmatown
entirely, you can pick and choose which files you want to copy.
git clone
to your local development machine.git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)