Settings

Theme

Show HN: A dead simple static site generator – just two template tags

tags.brace.io

94 points by colevscode 12 years ago · 79 comments

Reader

kurrent 12 years ago

I'm not being facetious, but this "yet another static site generator" joins the list with 230+ other generators.

(see http://staticsitegenerators.net/)

Why do we need another one?

  • jedberg 12 years ago

    Static site generators are the new Fibonacci generator. When you learn a language it's a fun little exercise, and possibly even useful.

    Also, everyone has slightly different requirements, so everyone likes to build their own.

    I will most likely soon build my own static site generator, because none of the ones out there do exactly what I want. I will most likely borrow from at least a few of the examples out there and then post it on my github so there is yet another one.

    I think we're seeing a proliferation simply because it is so easy to share code these days. Imagine how many Fibonacci generators would have been out there if it were as easy to share code when those were popular (I want to say 10 years ago but maybe it was longer).

    • ianstormtaylor 12 years ago

      Had the same problem ourselves while building Segment.io that every static site generator was a bit too opinionated in weird ways, so we made Metalsmith[0]. Check it out, and you might not need to make your own anymore :)

      [0]: http://www.metalsmith.io/

      • xixixao 12 years ago

        Ian how does it compare to gulp? Build tools with name-plugin-name are another proliferating area :).

    • irahul 12 years ago

      > I will most likely soon build my own static site generator, because none of the ones out there do exactly what I want.

      Why bother with the templating? Use Jinja2?

      • jedberg 12 years ago

        The templating is the easy part. It's all the parts that go around it that are the interesting/fun part.

        • yeukhon 12 years ago

          The hard part is styling... I could even just upload a .txt file and be done with my blog.

    • sillysaurus3 12 years ago

          def fib(n):
              x  = ((1 + sqrt(5)) / 2) ** n
              x -= ((1 - sqrt(5)) / 2) ** n
              return x / sqrt(5)
      • mjcohen 12 years ago

        Try n=1000 or n=10000.

        • sillysaurus3 12 years ago

              from math import sqrt
              from decimal import Decimal
          
              def fib(n):
                  x  = Decimal((1 + sqrt(5)) / 2) ** n
                  x -= Decimal((1 - sqrt(5)) / 2) ** n
                  return x / Decimal(sqrt(5))
          
              print fib(1000)
              print fib(10000)
              print fib(1290309123)
          
          
            $ time python ~/fib.py
            4.346655768693891359691727380E+208
            3.364476487644307695949089018E+2089
            2.879417086171668653426018537E+269658658
          
            real	0m0.138s
            user	0m0.086s
            sys	0m0.026s
  • bmj 12 years ago

    I've been looking at some of the options on that website, and this one seems to be less complex than many of the tools there. This isn't meant to be a blogging tool, but rather a simple way of emulating server-side includes or basic PHP includes in static HTML. I'm sure a few of those exist in that list, but when has "somebody built that already" become a gate for writing code?

  • workhere-io 12 years ago

    Why do we need another one?

    Because this one is much simpler to use than Jekyll and doesn't require you to install Ruby.

bryanlarsen 12 years ago

You could use server side includes instead, which have been a feature of web servers for about 20 years now...

  • icebraining 12 years ago

    Not if you host on S3, for example.

    • TheZenPsycho 12 years ago

      A legitimate problem we're solving by… inventing a new templating language.

      Did we need a new one to do this? Absolutely none of the hundreds of existing languages could have possibly worked, so let's reinvent SSI with different syntax?

    • mehulkar 12 years ago

      Or on brace.io (aka Dropbox)

    • TazeTSchnitzel 12 years ago

      Then just web spider SSI running on a local server.

      Or someone should write an SSI static site generator.

  • oneeyedpigeon 12 years ago

    A fine line, but static pages will be slightly faster than SSI.

    Edit: Although what would be really nice would be the same kind of pre-processor that works with apache ssi directives

steve_barham 12 years ago

Not Invented Here syndrome, at all? Sure, I understand wanting to use Python for templates rather than relying on an external application. But why ignore the many, many existing template libraries? Some of those libraries have solved problems which you don't realise you have yet.

Case in point, are you planning to support this 'dead simple' template language for users of your hosting site? If so, what happens if I try to include something outside the site root, in a Dropbox area which I control? https://github.com/braceio/tags/blob/master/tags/tags.py#L13

  • colevscodeOP 12 years ago

    Fair point. Python was chosen because it's an accessible language for new programmers. As for template languages, most are very complex. We wanted something minimal.

    As for that case, it won't work and we'll try to help you reorganize your content so it does. :)

laurent123456 12 years ago

I've been using PHP to generate static HTML pages. It's usually as simple as `php somepage.php > somepage.html` and you have all the advantages of a full featured language.

tghw 12 years ago

Don't use easy_install.

http://stackoverflow.com/a/3220572/2363

  • colevscodeOP 12 years ago

    We totally agree, and use pip and virtual envs for everything.

    However we chose python, and easy_install because it's pre-installed all macbooks going back to snow leopard. (specifically python 2.6.1 which comes with distutils needed for our setup.py file) This means for many web designers, brace-tags doesn't require that you update your python install, or really know python at all. It's the simplest command line install experience we could come up with.

    • tghw 12 years ago

      Then suggest pip first. If they need pip, they can easy_install it.

    • yeukhon 12 years ago

      Intention is good, but anyone who wish to do serious development wouldn't mind that extra step.

      Make my point clear: think about sudo pip install X vs advocating everyone to use virtualenv. The cost of cleaning up any mess from sudo outweigh the cost of getting pip and virtualenv.

      Look. I agree that getting new package install is painful. Even on Linux, I often have to add PPA to get the latest version.

    • sdegutis 12 years ago

      As a typical dev, I have no idea how to uninstall things that were installed via easy_install, especially when it was thrown into the places sudo lets it go. So every time I see `sudo easy_install`, I just close the page I'm on.

  • sillysaurus3 12 years ago

    I wonder when pip will be considered old and outdated?

moondev 12 years ago

Reminded me of my go-to include method from back in the day: http://www.moock.org/webdesign/javascript/client-side-includ...

  • alanfalcon 12 years ago

    Stupid question: any major drawbacks to using this method?

    • moondev 12 years ago

      Lots.

      The "include" file is just a js file that document.writes your html, so its not easy to make edits because you would need to do it in a big stream of escaped code.

      They won't work if user has js turned off.

      They are awful for seo because the includes will not be there when the page is crawled

      They are not semantic for writing things like <html><head> and will throw your browser into quirks mode because your page would effectively start with a script tag.

      But I used the hell out of them back when dynamic hosting was hard to come by (geocities, tripod etc)

      • alanfalcon 12 years ago

        Thanks!

        I'm in the fun position of essentially being a graphic designer made to be a web designer in a stingy startup environment where they don't want to pay someone to actually code things. Another designer and I put together a very sad website, and I wouldn't mind having a system for having includes for my header and footer, but even simple concepts like preprocessing scare me off. Heck, I run scared at the mention of the command line. I guess the only real answer is to bite the bullet and learn this stuff (I do frequent HN after all, you'd think I'd be more comfortable with some of these concepts).

        • krapp 12 years ago

          Yeah, "biting the bullet" is probably a good idea. As someone with a graphic arts degree who's been a "web designer" for years, I can tell you the potential for making money at anything entirely with front-end and design skills seems vanishingly small. The days when having an ftp account and Notepad were all you needed are long, long gone.

          I know enough git to be able to manage the basics (pulling and pushing) and a bit of command line stuff. If you ever get into working with web frameworks in just about any language, I think those are going to be kind of essential. It's probably not going to be as scary as you think though.

        • moondev 12 years ago

          No problem, keep at it and keep reading hn! This might be a nice good look for you to try, I have heard good things: http://hammerformac.com/

newaccountfool 12 years ago

What's the reason for this? Why don't you just build the website using standard HTML? Genuine question.

  • mikegioia 12 years ago

    This allows you to include other html files from within your templates. Instead of writing out the same <nav> and <header> html in every single file, you can just `include 'nav.html'`

  • CJefferson 12 years ago

    I was looking for something exactly like this just recently. Usually I use just php include when I want to just links some files together, but felt like I should stop using php as a preprocessor if possible.

    However, everything else is so complicated if all you want is simple file inclusion.

    • newaccountfool 12 years ago

      What's the reason behind not using PHP?

      • oneeyedpigeon 12 years ago

        Security: if you're mega-paranoid or unwilling to keep up with patches, going static reduces your attack vector. Performance: your web server will be able to handle more traffic without the overhead of php. Of course, if you need any kind of dynamic processing on the server, you'll need to move beyond static pages.

        • newaccountfool 12 years ago

          Ah ok, yeah now I totally understand :) Thought it was the whole 'Does any one even use PHP' getting thrown around again.

      • mokkol 12 years ago

        You need PHP installed and configured on your server/local. With this you can just use plain HTML.

        • icebraining 12 years ago

          In theory you could also use PHP as a pre-processor; install it locally, copy the sources to the webserver root, then use wget --mirror to extract a post-processed version of the site.

          You'd still need PHP installed on your home machine, but then again, it's not like you don't have to install some pre-processor anyway.

          • cowsandmilk 12 years ago

            > use wget --mirror to extract a post-processed version of the site.

            or just use php file.php > file.html

            • icebraining 12 years ago

              Sure, but you'd need to process each file, or write a script to do it, when wget --mirror fetches the whole site at once.

        • kurrent 12 years ago

          and by plain HTML, you mean plain Python installed and configured on your server/local

          • mokkol 12 years ago

            The server doesnt need to have Python installed. Just your local machine. That is a simple one liner if it isnt already installed.

  • mokkol 12 years ago

    partials :-)

    try to have 1 header in like 10 pages. That is a lot of copy pasting :-)

    • pbhjpbhj 12 years ago

      I remember discovering SSI back when I was writing pages using pico/notepad .. was only a short hop then on to rejecting js client-side includes and using PHP for templating.

  • eudox 12 years ago

    Templating.

dangayle 12 years ago

I like this very much. I used to do very similar with PHP, but I'm now a Python dev. Sometimes, just sometimes, writing plain old simple html is easier, and having a basic include would save a ton of heartache for maintenance.

epsylon 12 years ago

I'm willing to bet that it took more time to write and setup the homepage than to write the generator itself.

Kiro 12 years ago

I haven't read everything but why isn't the source like 10 lines if that's all it does?

  • icebraining 12 years ago

    Reading the source, it also has a built-in web server (based on Python's SimpleHTTPServer) and a file watcher to automatically rebuild the site.

    • keithpeter 12 years ago

      So the watcher only writes files that have been edited unless there is a change to one of the repeated tag files?

      • icebraining 12 years ago

        I think it rebuilds the whole site - I don't see any logic for identifying the changed file and rebuilding only that.

  • iagooar 12 years ago

    Easy to use does not have anything to do with the underlying codebase.

workhere-io 12 years ago

Is there any way you could make the watch feature not dependant on watchdog? The watchdog installation fails on pip on Mac. I then had to install Homebrew just to be able to install libyaml, which then meant I could install watchdog.

  • xixixao 12 years ago

    Which is why this should have been written in Node. Seriously, Python/Ruby environments+package managers are the abomination of programmer's time.

    • workhere-io 12 years ago

      I disagree. This is the only time I've ever had any problems with Python package managers.

rooodini 12 years ago

I actually found the “Highlight this” example at the top a bit confusing. Could you write “Display this” instead? Or give a better example to demonstrate conditionals?

LouisSayers 12 years ago

I like it! Great concept, thanks for simplifying something that should be dead easy and simple. A ruby port would be nice.

dolphenstein 12 years ago

Awesome! Just what I needed this morning.

workhere-io 12 years ago

Very nice and easy to use.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection