mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
* client: add semantic-ui * add README, disable google fonts * karma: limit coverage to .vue and .js files * add missing deps * semantic-ui in assets folder
18 lines
457 B
HTML
18 lines
457 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<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="ui middle aligned one column grid">
|
|
<div class="column center aligned">
|
|
<p>Loading...</p>
|
|
</div>
|
|
</div>
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
</html>
|