-
Notifications
You must be signed in to change notification settings - Fork 0
footer #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
footer #105
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,7 +4,10 @@ | |||||
| <meta charset="utf-8" /> | ||||||
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | ||||||
| <meta name="color-scheme" content="light dark" /> | ||||||
| <link rel="stylesheet" href="{{ url_for('static', filename='pico.min.css') }}" /> | ||||||
| <link | ||||||
| rel="stylesheet" | ||||||
| href="{{ url_for('static', filename='pico.min.css') }}" | ||||||
| /> | ||||||
| <title>{% block title %}{% endblock %}</title> | ||||||
| {% block extra_head %}{% endblock %} | ||||||
| </head> | ||||||
|
|
@@ -20,10 +23,21 @@ | |||||
| {% block header_nav %}{% endblock %} | ||||||
| </nav> | ||||||
| </header> | ||||||
| <main class="container"> | ||||||
| {% block content %}{% endblock %} | ||||||
| </main> | ||||||
| <footer class="container"></footer> | ||||||
| <main class="container">{% block content %}{% endblock %}</main> | ||||||
| <footer class="container"> | ||||||
| <p> | ||||||
| <h6>SRE</h6> | ||||||
| <ul style="list-style: none; padding-left: 0;"> | ||||||
|
|
||||||
| <li> | ||||||
| <a | ||||||
| href="https://cloud.astronomer.io/cljsvo8d800yz01giqt70a7e7/dags?status=failed&state=active" | ||||||
|
||||||
| href="https://cloud.astronomer.io/cljsvo8d800yz01giqt70a7e7/dags?status=failed&state=active" | |
| href="https://cloud.astronomer.io/cljsvo8d800yz01giqt70a7e7/dags?status=failed&state=active" rel="noopener noreferrer" |
Copilot
AI
Aug 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent indentation with mixed spaces and tabs. The line contains both tab and space characters which can cause formatting issues.
| </li> | |
| </li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The h6 element should not be nested inside a p element. Heading elements cannot be children of paragraph elements according to HTML standards.