rojects/workspace/guides/index.html

56 lines
1.6 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guides — Roject</title>
<link rel="stylesheet" href="../_assets_/styles.css">
<link rel="stylesheet" href="../_assets_/nav.css">
</head>
<body>
<div class="page">
<header>
<h1>Guides</h1>
<p class="subtitle">Reference guides for working in this project. Read the relevant guide before starting a task in that area.</p>
</header>
<section>
<div class="card">
<h3>Writing TypeScript Code</h3>
<p>
Formatting rules, naming conventions, design patterns, and architectural
principles for all TypeScript in this project. Read this before writing
any application code.
</p>
<p style="margin-top:0.75rem">
<a href="writing-typescript-code/index.html">Read the guide</a>
</p>
</div>
<div class="card">
<h3>Locales</h3>
<p>
How user-visible strings are stored as files, auto-generated into typed
TypeScript constants, and fetched at runtime via <code>LocaleManager</code>.
Read this before adding or changing any user-visible text.
</p>
<p style="margin-top:0.75rem">
<a href="locales/index.html">Read the guide</a>
</p>
</div>
</section>
<footer>
Roject &mdash; guides
</footer>
</div>
<script>var NAV_ROOT = '../';</script>
<script src="../_assets_/nav-data.js"></script>
<script src="../_assets_/nav.js"></script>
</body>
</html>