diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-16 19:07:57 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-17 07:40:06 -0400 |
commit | e0775064500aad4a8b51e50db80587be62607e3d (patch) | |
tree | c65ca743bdad0f3b4f78661c89fac4f657f06457 /coverage/htmlfiles/index.html | |
parent | 3e3c263485d368256130d09f218dcafb3c5599f7 (diff) | |
download | python-coveragepy-git-e0775064500aad4a8b51e50db80587be62607e3d.tar.gz |
refactor(html): use header/main/footer html5 elements
Diffstat (limited to 'coverage/htmlfiles/index.html')
-rw-r--r-- | coverage/htmlfiles/index.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index 3654d66a..b5d2bcd1 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -22,7 +22,7 @@ </head> <body class="indexfile"> -<div id="header"> +<header> <div class="content"> <h1>{{ title|escape }}: <span class="pc_cov">{{totals.pc_covered_str}}%</span> @@ -34,9 +34,9 @@ <input id="filter" type="text" value="" placeholder="filter..." /> </form> </div> -</div> +</header> -<div class="help_panel"> +<aside class="help_panel"> <img id="panel_icon" src="keybd_open.png" alt="Hide keyboard shortcuts" /> <p class="legend">Hot-keys on this page</p> <div> @@ -52,9 +52,9 @@ <span class="key">c</span> change column sorting </p> </div> -</div> +</aside> -<div id="index"> +<main id="index"> <table class="index"> <thead> {# The title="" attr doesn"t work in Safari. #} @@ -111,16 +111,16 @@ {% if skipped_empty_msg %} <p>{{ skipped_empty_msg }}</p> {% endif %} -</div> +</main> -<div id="footer"> +<footer> <div class="content"> <p> <a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a>, created at {{ time_stamp }} </p> </div> -</div> +</footer> </body> </html> |