mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-10-23 03:31:56 +00:00
* lint: Implement HTML Linting with htmlhint and fix indent. Implements HTML linting using htmlhint and uses indentation rules of zulip webapp - 4 spaces. Creates a separate file .htmlhintrc for the rules, most of which are defaults. Also, fixes indentation in html files and adds a missing title in about.html. * deps: Change versioning of various dependencies to exact versions. As we prefer to use exact working version for dependencies, changed the versions to exact versions. Fixes #676.
18 lines
627 B
HTML
18 lines
627 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="responsive desktop">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Zulip - Settings</title>
|
|
<link rel="stylesheet" href="css/preference.css" type="text/css" media="screen">
|
|
</head>
|
|
<body>
|
|
<div id="content">
|
|
<div id="sidebar"></div>
|
|
<div id="settings-container"></div>
|
|
</div>
|
|
</body>
|
|
<script src="js/pages/preference/preference.js"></script>
|
|
<script>require('./js/shared/preventdrag.js')</script>
|
|
</html>
|