mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-31 15:09:32 +00:00
* client: semantic ui -> bootstrap 4 and less -> scss * start porting components to boostrap * port header, start porting menu * port loading screen * port most of the menu * port secondary menus * port guilds and stable * disable tavern for now, port inbox * typo * put back old tavern code
16 lines
500 B
HTML
16 lines
500 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Habitica</title>
|
|
</head>
|
|
<body>
|
|
<!-- #loading-screen needs to be rendered before vue, will be deleted once app is loaded -->
|
|
<div id="loading-screen" class="h-100 w-100 d-flex justify-content-center align-items-center">
|
|
<p>Loading...</p>
|
|
</div>
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
</html>
|