goctests0 commited on
Commit
c143324
·
verified ·
1 Parent(s): c0530e9

Upload 3 files

Browse files
Files changed (1) hide show
  1. templates/base.html +2 -1
templates/base.html CHANGED
@@ -7,9 +7,10 @@
7
  <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
8
  </head>
9
  <body class="{% block body_class %}{% endblock %}">
 
10
  <div class="app-shell {% block shell_class %}{% endblock %}">
11
  {% block header %}{% endblock %}
12
- <main class="app-main">
13
  {% block content %}{% endblock %}
14
  </main>
15
  </div>
 
7
  <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
8
  </head>
9
  <body class="{% block body_class %}{% endblock %}">
10
+ <a class="skip-link" href="#main-content">Skip to main content</a>
11
  <div class="app-shell {% block shell_class %}{% endblock %}">
12
  {% block header %}{% endblock %}
13
+ <main class="app-main" id="main-content">
14
  {% block content %}{% endblock %}
15
  </main>
16
  </div>