-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add link to javascript guide on read the docs
- Loading branch information
Showing
4 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
corehq/apps/styleguide/templates/styleguide/bootstrap5/javascript_guide.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{% extends 'styleguide/bootstrap5/base.html' %} | ||
|
||
{% block intro %} | ||
<h1 class="sg-title mb-0" id="content">Javascript Guide</h1> | ||
<p class="sg-lead"> | ||
How to use javascript on HQ. | ||
</p> | ||
{% endblock intro %} | ||
|
||
{% block toc %} | ||
<h5 class="my-2 ms-3">On this page</h5> | ||
<hr class="my-2 ms-3"> | ||
<nav id="TableOfContents"> | ||
<ul> | ||
<li> | ||
<a href="#overview">Overview</a></li> | ||
</ul> | ||
</nav> | ||
{% endblock toc %} | ||
|
||
{% block content %} | ||
<h2 id="overview"> | ||
Overview | ||
</h2> | ||
<p> | ||
This Style Guide aims to be a good review of the visual components of our front-end, which includes CSS and javascript | ||
from various libraries. For a more in-depth review of our JavaScript structure, organization, and processes, | ||
please refer to the | ||
<a href="https://commcare-hq.readthedocs.io/js-guide/README.html" target="_blank">Dimagi JavaScript Guide</a>. | ||
</p> | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters