Files
mostlymatter/web/templates/home.html
Christopher Speller c6fb95912b Changing the way we mattermost handles URLs. team.domain.com becomes domain.com/team.
Renaming team.Name to team.DisplayName and team.Domain to team.Name.
So: team.Name -> url safe name. team.DisplayName -> nice name for users
2015-07-20 17:45:23 -04:00

25 строки
583 B
HTML

{{define "home"}}
<!DOCTYPE html>
<html>
{{template "head" . }}
<body>
<div class="container-fluid">
<div class="sidebar--right" id="sidebar-right"></div>
<div class="sidebar--left" id="sidebar-left"></div>
<div class="inner__wrap">
<div class="row header">
<div id="navbar"></div>
</div>
<div class="row main">
<div class="hidden-xs" id="sidebar"></div>
<div class="app__content"></div>
</div>
</div>
</div>
<script>
window.setup_home_page({{.Props.TeamURL}});
</script>
</body>
</html>
{{end}}