mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01: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
17 lines
500 B
HTML
17 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>
|