mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-24 13:43:12 +02:00
bf1c1a82b1
* Updating focalboard website * Updating video * Updating ui * Updating header * Updating board views and adding loop * Updating docs pages * Updating blog * Updating UI * Updating downloads page * Updating teams item * Updating downloads page * Updating UI * Updating docs * Updating UI * Updating lucky orange * Updating link * Updating intro text * Updating css version * Minor UI Fixes * Updating css * Updating css version * Updating css version
28 lines
934 B
HTML
Executable File
28 lines
934 B
HTML
Executable File
<!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 "nav.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>
|