Bridgetown - progressive site generator and framework, powered by Ruby
11–20 of 20 posts
Re: Bridgetown - progressive site generator and framework, powered by Ruby
#12So this is a rails alternative?
Re: Bridgetown - progressive site generator and framework, powered by Ruby
#13Pretty cool. If anyone associated with the project reads this: All of the headings on bridgetownrb.com seem to have a scroll overflow, which stops your page scrolling on mobile.
Re: Bridgetown - progressive site generator and framework, powered by Ruby
#14This site does a really bad job at explaining why I should use this product. It looks like they are trying to hard.
Like the goal of Hugo: "With its amazing speed and flexibility, Hugo makes building websites fun again." (It didn't, I couldn't get past the fact that the docs were hard to understand.)
I think tools need to focus on clear description of feature sets and leave the decision on what emotions to have to users.
But, scrolling down, I saw it said it was a static site generator. I'm still sticking to my own for now.
Re: Bridgetown - progressive site generator and framework, powered by Ruby
#15Re: Bridgetown - progressive site generator and framework, powered by Ruby
#16Pretty cool. If anyone associated with the project reads this: All of the headings on bridgetownrb.com seem to have a scroll overflow, which stops your page scrolling on mobile.
I'm not doing this on my Android device
``` @media (max-width: 575px) h2 { position: relative; overflow-x: hidden; } ```
overflow-x:hidden makes overflow-y:auto, which is scroll
Re: Bridgetown - progressive site generator and framework, powered by Ruby
#17This site does a really bad job at explaining why I should use this product. It looks like they are trying to hard.
I doomscrolled through the entire user praise section to find three lines of commandline or code usage. Nothing of the sort.
Re: Bridgetown - progressive site generator and framework, powered by Ruby
#18Earlier quoted context omitted.
I'm not doing this on my Android device
You might have an android device wider than 575px, this is the media query that's causing it: ``` @media (max-width: 575px) h2 { position: relative; overflow-x: hidden; } ``` overflow-x:hidden makes overflow-y:auto, which is scroll
Re: Bridgetown - progressive site generator and framework, powered by Ruby
#19I'm also intrigued by its ability to serve dynamic routes via Roda. This project is definitely putting some interesting concepts together.