Skip to Content
Head First Go
book

Head First Go

by Jay McGavren
April 2019
Beginner
556 pages
14h 21m
English
O'Reilly Media, Inc.
Content preview from Head First Go

Chapter 16. a pattern to follow: HTML Templates

image

Your web app needs to respond with HTML, not plain text. Plain text is fine for emails and social media posts. But your pages need to be formatted. They need headings and paragraphs. They need forms where your users can submit data to your app. To do any of that, you need HTML code.

And eventually, you’ll need to insert data into that HTML code. That’s why Go offers the html/template package, a powerful way to include data in your app’s HTML responses. Templates are key to building bigger, better web apps, and in this final chapter, we’ll show you how to use them!

A guestbook app

Let’s put everything we’ve learned in Chapter 15 to use. We’re going to build a simple guestbook app for a website. Your visitors will be able to enter messages in a form, which will be saved to a file. They’ll also be able to view a list of all the previous signatures.

image

There’s a lot left to cover before we can get this app working, but don’t worry—we’ll be breaking this process down into little steps. Let’s take a look at what will be involved...

We’ll need to set up our app and get it to respond to requests for the main guestbook page. This part won’t be too difficult; we’ve already covered everything we need to know in the previous chapter.

Then ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Head First Git

Head First Git

Raju Gandhi
Learning Go

Learning Go

Jon Bodner
Head First Software Architecture

Head First Software Architecture

Raju Gandhi, Mark Richards, Neal Ford
Head First Design Patterns, 2nd Edition

Head First Design Patterns, 2nd Edition

Eric Freeman, Elisabeth Robson

Publisher Resources

ISBN: 9781491969540Errata Page