1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="{{ .Site.LanguageCode }}">
- <head>
- {{ partial "headers.html" . }}
- {{ partial "custom_headers.html" . }}
- </head>
- <body>
- <div id="all" class="blog_article">
- {{ partial "top.html" . }}
- {{ partial "nav.html" . }}
- {{ partial "breadcrumbs.html" . }}
- <div id="content">
- {{ if isset .Params "id" }}
- {{ partial .Params.id . }}
- {{ else }}
- <div class="container">
- <div class="row">
- <div class="col-md-12">
- <div>
- {{ .Content }}
- </div>
- </div>
- </div>
- <!-- /.row -->
- </div>
- <!-- /.container -->
- {{ end }}
- </div>
- <!-- /#content -->
- {{ partial "footer.html" . }}
- </div>
- <!-- /#all -->
- {{ partial "scripts.html" . }}
- </body>
- </html>
|