Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
enolfc committed Sep 12, 2024
1 parent cd47c8a commit 5266b09
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions ec-templates/home.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- htmlhint doctype-first:false -->
{% extends "page.html" %}
{% if announcement_home is string %}
{% set announcement = announcement_home %}
Expand Down
10 changes: 8 additions & 2 deletions ec-templates/token.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{% extends "page.html" %} {% block main %}
<!-- htmlhint doctype-first:false,id-class-value:false -->
{% extends "page.html" %}

{% block main %}
<div class="ecl-container ecl-u-mv-xl">
<h1 class="sr-only">Manage JupyterHub Tokens</h1>
<div class="row justify-content-center">
Expand Down Expand Up @@ -221,7 +224,10 @@ <h2>Authorized Applications</h2>
</div>
{% endif %}
</div>
{% endblock main %} {% block script %} {{ super() }}
{% endblock main %}

{% block script %}
{{ super() }}
<script type="text/javascript">
require(["token"]);
</script>
Expand Down

0 comments on commit 5266b09

Please sign in to comment.