mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-22 05:44:16 +00:00
* Round corners for UI elements / “8-bit” outlines for RPG elements. * Tag bar – Make it clearer that “Tags” is a heading, not an option * Task filters – restyle in line with tag bar + nav menu
28 lines
855 B
Text
28 lines
855 B
Text
doctype html
|
|
html(ng-app="habitrpg")
|
|
head
|
|
title=title
|
|
link(rel='shortcut icon', href='#{env.getBuildUrl("favicon.ico")}?v=3')
|
|
|
|
meta(charset='utf-8')
|
|
meta(name='viewport', content='width=device-width, initial-scale=1.0')
|
|
meta(name='apple-mobile-web-app-capable', content='yes')
|
|
|
|
script(type='text/javascript').
|
|
window.env = !{JSON.stringify(env)};
|
|
|
|
!= env.getManifestFiles("app")
|
|
|
|
script(type='text/javascript').
|
|
window.habitrpg
|
|
.controller('StaticAvatarCtrl', ['$scope', function($scope){
|
|
$scope.profile = window.env.user;
|
|
}])
|
|
|
|
//webfonts
|
|
link(href='//fonts.googleapis.com/css?family=Lato:300,400,700,400italic,700italic', rel='stylesheet', type='text/css')
|
|
|
|
body(ng-cloak)
|
|
include ./shared/header/avatar
|
|
div(ng-controller='StaticAvatarCtrl')
|
|
+herobox({main:true})
|