-
Notifications
You must be signed in to change notification settings - Fork 0
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
Basic home page with palceholders #1
Conversation
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.
Looks good, couple changes for next round
@@ -3,9 +3,37 @@ | |||
<head> | |||
{% include "includes/header.html" %} | |||
<meta charset="UTF-8"> | |||
<title>Title</title> | |||
<title>jacob.covs.tld</title> <!-- TEMP:REPLACE --> |
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.
We'll need to make some config file that constants like this get pulled from. OK for now
<title>Title</title> | ||
<title>jacob.covs.tld</title> <!-- TEMP:REPLACE --> | ||
|
||
<div class="container"> |
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.
Pull out navbar into templates/includes/navbar.html
, which we can then do {% include "includes/navbar.html" %}
within each page.
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.
I was going to, but that assumes that the navbar will be the same on each page, which it won't be:
The current page's highlighting needs changing, and which options are available need to be changed.
Would this still work anyway (i.e. can we dynamically change things in the included navbar.html ?) ??
<!-- Bootstrap: --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous"> |
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.
+1 for adding the hash
No description provided.