[More template tweakage. Bryan O'Sullivan **20070915070126] { move ./web/rwh/templates/base.html ./web/rwh/templates/simple.html hunk ./en/Makefile 7 -# alpha - build profiled HTML for internal review -# beta - build profiled HTML for public review -# html - build unprofiled HTML, i.e. the whole lot +# web - build all web targets: +# alpha - build profiled HTML for internal review +# beta - build profiled HTML for public review +# html - build unprofiled HTML, i.e. the whole lot hunk ./en/Makefile 116 -all: alpha beta pdf html +all: web pdf hunk ./web/index.complete.html 45 - + hunk ./web/rwh/templates/404.html 1 -{% extends "base.html" %} +{% extends "simple.html" %} hunk ./web/rwh/templates/500.html 1 -{% extends "base.html" %} +{% extends "simple.html" %} addfile ./web/rwh/templates/boilerplate.html hunk ./web/rwh/templates/boilerplate.html 1 + + + + {% block pagetitle %}Real World Haskell{% endblock %} + + + + + + + + + {% block bodycontent %}{% endblock %} + +

Want to stay + up to date? Subscribe to comment feeds for any chapter, or + the entire book.

Copyright + 2007 Bryan O'Sullivan, Don Stewart, and John Goerzen. This + work is licensed under a Creative + Commons Attribution-Noncommercial 3.0 License. Icons by + Paul Davey aka Mattahan.

+
+ + + + + hunk ./web/rwh/templates/simple.html 1 - - - - Real World Haskell - - - - - - +{% extends "boilerplate.html" %} hunk ./web/rwh/templates/simple.html 3 - - +{% block bodycontent %} + hunk ./web/rwh/templates/simple.html 6 -
{% block body %}{% endblock %}
- -

Want to stay - up to date? Subscribe to comment feeds for any chapter, or - the entire book.

Copyright - 2007 Bryan O'Sullivan, Don Stewart, and John Goerzen. This - work is licensed under a Creative - Commons Attribution-Noncommercial 3.0 License. Icons by - Paul Davey aka Mattahan.

-
- - - - - +
{% block body %}{% endblock %}
+{% endblock %} }