...

/

Writing Web Application with Templates

Writing Web Application with Templates

This lesson shows how to build a wiki application which is more detailed than the previous one. To make this application quickly and effectively, a template package is used from the Go standard library.

We'll cover the following...

Building a wiki application

The following program is a working web-application for a wiki, which is a collection of pages that can be viewed, edited, and saved in under 100 lines of code. It is the code lab wiki tutorial from the Go site, one of the best Go-tutorials in existence. It is certainly worthwhile to work through the complete cod ...