ba592223f8
- updated GH Repo URL to match the GH edit URL format/template - updated edit-page partial
27 lines
935 B
HTML
27 lines
935 B
HTML
<!DOCTYPE html>
|
|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
|
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
|
<!--[if gt IE 8]> <html class="no-js"> <![endif]-->
|
|
|
|
<html>
|
|
<head>
|
|
{{ partial "head.html" .}}
|
|
</head>
|
|
<body>
|
|
{{ partial "nav2.html" .}}
|
|
<div id="wrapper">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
{{ partial "sidebar.html" .}}
|
|
<div class="col-lg-9 doc-content">
|
|
{{ partial "page-edit.html" . }}
|
|
<h1 class="mt-0 doc-title">{{ .Title }}</h1>
|
|
{{ partial "hanchor.html" .Content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" .}}
|
|
</body>
|
|
</html>
|