github.com/fragmenta/fragmenta-cms@v1.5.5/src/app/views/layout.html.got (about) 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 {{ template "app/views/meta.html.got" . }} 5 {{ template "app/views/includes.html.got" . }} 6 </head> 7 <body> 8 9 {{ if .warning }} 10 <div class="warning">{{.warning}}</div> 11 {{ end }} 12 13 <header> 14 {{ template "app/views/header.html.got" . }} 15 </header> 16 17 <article> 18 {{ .content }} 19 </article> 20 21 <footer> 22 {{ template "app/views/footer.html.got" . }} 23 </footer> 24 25 </body> 26 </html>