cmd/present: fix indentation in template

No semantic change.
Pointed out by Dmitri Shuralyov on CL 33578.

Change-Id: Ic67f41e8dde8fc9bf624c98307a89bbe1f10e7f7
Reviewed-on: https://go-review.googlesource.com/33659
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Rob Pike <r@golang.org>
diff --git a/cmd/present/templates/article.tmpl b/cmd/present/templates/article.tmpl
index 939f524..0a223c6 100644
--- a/cmd/present/templates/article.tmpl
+++ b/cmd/present/templates/article.tmpl
@@ -31,13 +31,13 @@
       <div class="container">
         <div id="heading">{{.Title}}
           {{with .Subtitle}}{{.}}{{end}}
-        {{if .Authors}}
-          {{range .Authors}}
-            <div class="author">
-              {{range .Elem}}{{elem $.Template .}}{{end}}
-            </div>
+          {{if .Authors}}
+            {{range .Authors}}
+              <div class="author">
+                {{range .Elem}}{{elem $.Template .}}{{end}}
+              </div>
+            {{end}}
           {{end}}
-        {{end}}
         </div>
       </div>
     </div>