├── examples ├── appengine │ ├── views │ │ ├── includes │ │ │ ├── footer.tpl │ │ │ └── header.tpl │ │ └── index.tpl │ ├── app.yaml │ └── hello │ │ └── hello.go ├── templates │ ├── views │ │ ├── includes │ │ │ ├── footer.tpl │ │ │ └── header.tpl │ │ ├── index.tpl │ │ └── about.tpl │ └── main.go ├── splat │ ├── public │ │ ├── images │ │ │ └── go.png │ │ └── css │ │ │ └── base.css │ ├── views │ │ ├── includes │ │ │ ├── footer.tpl │ │ │ └── header.tpl │ │ └── index.tpl │ └── main.go ├── static-files │ ├── public │ │ ├── images │ │ │ └── go.png │ │ └── css │ │ │ └── base.css │ ├── views │ │ ├── includes │ │ │ ├── footer.tpl │ │ │ └── header.tpl │ │ └── index.tpl │ └── main.go ├── configuration │ ├── traffic.conf │ └── main.go ├── show-errors │ └── main.go ├── error-handler │ └── main.go ├── not-found │ └── main.go ├── simple │ └── main.go ├── middleware │ └── main.go └── before-filter │ └── main.go ├── traffic ├── new_project_templates │ ├── views │ │ ├── includes │ │ │ ├── footer.tpl │ │ │ └── header.tpl │ │ └── index.tpl │ ├── main.go │ ├── root_handler.go │ ├── root_handler_test.go │ └── helper_test.go ├── main.go └── command_new.go ├── .travis.yml ├── doc.go ├── .gitignore ├── request.go ├── logger_middleware.go ├── request_test.go ├── static_middleware.go ├── router_middleware.go ├── LICENSE ├── route.go ├── router_middleware_test.go ├── response_writer_test.go ├── response_writer.go ├── route_test.go ├── template.go ├── utils.go ├── utils_test.go ├── router_test.go ├── show_errors_middleware.go ├── README.md └── router.go /examples/appengine/views/includes/footer.tpl: -------------------------------------------------------------------------------- 1 |
Footer (views/includes/footer.tpl)
2 |