All Projects → bridgetownrb → Bridgetown

bridgetownrb / Bridgetown

Licence: mit
A Webpack-aware, Ruby-powered static site generator for the modern Jamstack era

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Bridgetown

Eleventy
A simpler static site generator. An alternative to Jekyll. Transforms a directory of templates (of varying types) into HTML.
Stars: ✭ 10,867 (+3328.08%)
Mutual labels:  static-site-generator, documentation-tool, blog-engine
Wowchemy Hugo Modules
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, build with widgets! 创建在线课程,学术简历或初创网站。
Stars: ✭ 6,093 (+1822.08%)
Mutual labels:  static-site-generator, blog-engine, documentation-tool
Zola
A fast static site generator in a single binary with everything built-in. https://www.getzola.org
Stars: ✭ 7,823 (+2367.82%)
Mutual labels:  static-site-generator, documentation-tool, blog-engine
Statiq.web
Statiq Web is a flexible static site generator written in .NET.
Stars: ✭ 1,358 (+328.39%)
Mutual labels:  static-site-generator, blog-engine, jamstack
Hugo
The world’s fastest framework for building websites.
Stars: ✭ 55,899 (+17533.75%)
Mutual labels:  static-site-generator, documentation-tool, blog-engine
Eleventy Starter Boilerplate
🚀 Eleventy Starter is production-ready with SEO-friendly for quickly starting a blog. ⚡ Built with Eleventy, ESLint, Prettier, Webpack, PostCSS, Tailwind CSS and Netlify CMS (optional).
Stars: ✭ 139 (-56.15%)
Mutual labels:  webpack, static-site-generator, jamstack
Skeleventy
A skeleton boilerplate built with Eleventy.
Stars: ✭ 318 (+0.32%)
Mutual labels:  webpack, static-site-generator, jamstack
wowchemy-hugo-themes
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, easily build with blocks! 创建在线课程,学术简历或初创网站。#OpenScience
Stars: ✭ 6,891 (+2073.82%)
Mutual labels:  static-site-generator, documentation-tool, blog-engine
trailing-slash-guide
Understand and fix your static website trailing slash issues!
Stars: ✭ 255 (-19.56%)
Mutual labels:  static-site-generator, jamstack
sutanlab.id
☕️ My Personal Homepage & Blog site with NextJS. 🇺🇸 🇮🇩
Stars: ✭ 39 (-87.7%)
Mutual labels:  static-site-generator, jamstack
navigator-hugo
Navigator Business theme powered by Hugo. It also could be used for a personal portfolio.
Stars: ✭ 133 (-58.04%)
Mutual labels:  static-site-generator, jamstack
directus-metalsmith-snipcart
Lookbook web app with Directus' open source headless CMS, Metalsmith, Vue.js & Snipcart
Stars: ✭ 14 (-95.58%)
Mutual labels:  static-site-generator, jamstack
persian-hugo
Persian is a box design personal blog theme based on Bootstrap and powered by Hugo. It is very responsive and perfectly fits on any sized screen device.
Stars: ✭ 32 (-89.91%)
Mutual labels:  static-site-generator, jamstack
crisp-react
React boilerplate written in TypeScript with a variety of Jamstack and full stack deployments. Comes with SSR and without need to learn a framework. Helps to split a monolithic React app into multiple SPAs and avoid vendor lock-in.
Stars: ✭ 147 (-53.63%)
Mutual labels:  static-site-generator, jamstack
contentful-hugo
A CLI tool that pulls data from Contentful and turns it into markdown files for Hugo and other static site generators. It also includes an express server that can be used for local development and content previews
Stars: ✭ 31 (-90.22%)
Mutual labels:  static-site-generator, jamstack
gisture
A minimal and flexible blog generator based on GitHub Gist.
Stars: ✭ 24 (-92.43%)
Mutual labels:  static-site-generator, blog-engine
influencer-hugo
Influencer is a Hugo theme for book authors and writers. It has also Snipcart supports for order books and payments.
Stars: ✭ 66 (-79.18%)
Mutual labels:  static-site-generator, jamstack
liva-hugo
Liva is a personal blog template powered by Hugo.
Stars: ✭ 192 (-39.43%)
Mutual labels:  static-site-generator, jamstack
Bolt
⚡ is a fast grunt based, data driven, static site seed project, for rapid web development of PWA's or JAMstack projects
Stars: ✭ 30 (-90.54%)
Mutual labels:  static-site-generator, jamstack
Cogear.js
Modern static websites generator (Node.JS/Webpack)
Stars: ✭ 315 (-0.63%)
Mutual labels:  webpack, static-site-generator

Bridgetown

Bridgetown

Bridgetown is a Webpack-aware, Ruby-powered static site generator for the modern Jamstack era. Bridgetown takes your content, API data, and frontend assets; renders templates in Markdown, Liquid, ERB, and many other formats; and exports a complete website ready to be served by fast Jamstack services like Vercel or Render or traditional web servers like Caddy or Nginx.

Build Status Gem Version Licensed MIT Join the Discord Chat PRs welcome!


Special Thanks to Our Founding Members! 🙏 🎉

Say howdy 👋 to our growing list of the first twenty sponsors of Bridgetown on GitHub. You too can join this list and sponsor Bridgetown!

pilotcph andrewmcodes miatrinity marcoroth mtomov
@cabgfx @andrewmcodes @miatrinity @marcoroth_ @mtomov
Website Website Website Website
johnchambers johnchambers pascalwengerter DRBragg jasoncharnes
@johnchambers @wout @pascalwengerter @DRBragg @jasoncharnes
Website Website Website Website
leastbad asaaki scoutapm-sponsorships adrianvalenz
@leastbad @asaaki @scoutapm-sponsorships @adrianvalenz You Next?
Website Website Website

Commercial Support

Bridgetown development is spearheaded by Portland-based web studio Whitefusion. Contact us if you need commercial support for your Bridgetown content strategy, site design, or deployment. Also providing commercial support: Radioactive Toy based in the UK.


Start Here

Get Up to Speed

Testing Locally

If you'd like to hack away on Bridgetown directly, you'll need to clone this repo and ensure the test suite passes. Note that this is a "monorepo", meaning that multiple Rubygem codebases are stored within a single repo.

$ git clone [email protected]:bridgetownrb/bridgetown.git
$ cd bridgetown
$ bundle # install development gems
$ bundle exec rake # run the full test suite

After making changes in bridgetown-core, if you want to run a single unit test, you can use the command:

$ script/test test/test_foo.rb

If you are only updating a Cucumber .feature file, you can use the command:

$ script/cucumber features/foo.feature

Both script/test and script/cucumber can be run without arguments to run its entire respective suite.

To switch one of your website repos to using the local gem, add the local gem path to the site's Gemfile as follows:

gem "bridgetown-core", path: "/path/to/bridgetown/bridgetown-core"

Need help?

If you don't find the answer to your problem in our docs, ask the community for help.

Code of Conduct

In order to have a more open and welcoming community, Bridgetown adheres to a code of conduct adapted from the Contributor Covenant.

Please adhere to this code of conduct in any interactions you have in the Bridgetown community. It is strictly enforced on all official Bridgetown repositories, websites, and resources. If you encounter someone violating these terms, please let one of our core team members know and we will address it as soon as possible.

Contributors

Bridgetown is built by:

jaredcwhite jaredmoody andrewmcodes ParamagicDev MikeRogers0
@jaredcwhite @jaredmoody @andrewmcodes @ParamagicDev @MikeRogers0
Portland, OR Portland, OR Wilmington, NC Providence, RI Ny-Ålesund, Svalbard
@wout @codemargaret @julianrubisch @ianbayne @ayushn21
Brighton, UK Portland, OR Vienna, Austria Tokyo, Japan London, UK
@bkmgit @pascalwengerter @marketerly @juanvqz You Next?
Lisbon, Portugal Tripoli, Libya Oaxaca, México Anywhere

Interested in joining the Bridgetown Core Team? Send a DM to Jared in Discord and let's chat!

License

The gem is available as open source under the terms of the MIT LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].