-
Notifications
You must be signed in to change notification settings - Fork 15
Update hosting info #9
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
Open
mpounsett
wants to merge
3
commits into
dnsviz:master
Choose a base branch
from
mpounsett:update_hosting_info
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,31 +1,40 @@ | ||
| {% extends "base_site.html" %} | ||
|
|
||
| {% block body_tag %} | ||
| <body id="dnsviz-home"> | ||
| {% endblock %} | ||
| <body id="dnsviz-home"> | ||
| {% endblock %} | ||
|
|
||
| {% block maincontent %} | ||
| <h3>Contact</h3> | ||
| <p>DNSViz was developed by <a href="http://casey.byu.edu/">Casey Deccio</a>, originally at <a href="http://www.sandia.gov/">Sandia National Laboratories</a>. <a href="http://www.verisignlabs.com/">Verisign Labs</a> continues to sponsor ongoing development of DNSViz.</p> | ||
| <p>Please use the form below to contact us with your comments and questions. We appreciate your feedback!</p> | ||
| <form action="" method="post"> | ||
| {% csrf_token %} | ||
| {% for field in form %} | ||
| <p> | ||
| {% if field.errors %} | ||
| <ul class="formfield-error-list"> | ||
| {% for err in field.errors %} | ||
| <li>{{ err }} | ||
| {% endfor %} | ||
| </ul> | ||
| {% endif %} | ||
| {% if field.label %}{{ field.label_tag }}:{% endif %} | ||
| {{ field }} | ||
| {% if field.help_text %} | ||
| <br />{{ field.help_text }} | ||
| {% endif %} | ||
| </p> | ||
| {% endfor %} | ||
| <p><input type="submit" class="button" value="Submit" /></p> | ||
| </form> | ||
| {% endblock %} | ||
| {% block maincontent %} | ||
| <h3>Contact</h3> | ||
| <p> | ||
| DNSViz was developed by <a href="http://casey.byu.edu/">Casey Deccio</a>, | ||
| originally at | ||
| <a href="http://www.sandia.gov/">Sandia National Laboratories</a>. | ||
| This site is currently hosted and operated by | ||
| <a href="https://www.dns-oarc.net/">DNS-OARC</a>. | ||
| </p> | ||
| <p> | ||
| Please use the form below to contact us with your comments and questions. | ||
| We appreciate your feedback! | ||
| </p> | ||
| <form action="" method="post"> | ||
| {% csrf_token %} | ||
| {% for field in form %} | ||
| <p> | ||
| {% if field.errors %} | ||
| <ul class="formfield-error-list"> | ||
| {% for err in field.errors %} | ||
| <li>{{ err }} | ||
| {% endfor %} | ||
| </ul> | ||
| {% endif %} | ||
| {% if field.label %}{{ field.label_tag }}:{% endif %} | ||
| {{ field }} | ||
| {% if field.help_text %} | ||
| <br />{{ field.help_text }} | ||
| {% endif %} | ||
| </p> | ||
| {% endfor %} | ||
| <p><input type="submit" class="button" value="Submit" /></p> | ||
| </form> | ||
| {% endblock %} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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'm not an HTML/CSS expert, but I think element IDs are supposed to be unique throughout the doc.
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.
Yeah, you're right about that. I was a bit on autopilot when I did that and was reading that as
class, notid.You know the CSS setup for the site better than I do.. if you want to suggest the correct way to set up those elements to get the right effect I'm happy to take your advice.
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.
As a non-Web designer, I'm actually not sure the best way to fix this... 😬 I know that I'm the one that brought it up. Maybe change the CSS, so footer buttons is a class instead of an id?
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'll have a closer look at the CSS later and see what makes sense.