-
Notifications
You must be signed in to change notification settings - Fork 40
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
Added footer with licensing information #194
base: master
Are you sure you want to change the base?
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 |
---|---|---|
|
@@ -47,5 +47,29 @@ | |
{%- endwith -%} | ||
{%- block content -%}{%- endblock %} | ||
</div> | ||
<div id="page_footer"> | ||
<p> | ||
Copyright © 2002-2021 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ideally, we don't have to update this every year manually in archweb we have something like:
So a jinja template variable should contain the current year. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This line and the line below contains an extraneous space at the end of the line |
||
<a href="mailto:[email protected]" title="Contact Judd Vinet">Judd Vinet</a>, | ||
<a href="mailto:[email protected]" title="Contact Aaron Griffin">Aaron Griffin</a> and | ||
<a href="mailto:[email protected]" title="Contact Levente Polyák">Levente Polyák</a>. | ||
</p> | ||
|
||
<p> | ||
The Arch Linux name and logo are recognized | ||
<a href="https://wiki.archlinux.org/title/DeveloperWiki:TrademarkPolicy" title="Arch Linux Trademark Policy">trademarks</a>. | ||
Some rights reserved. | ||
</p> | ||
|
||
<p> | ||
The registered trademark Linux® is used pursuant to a sublicense from LMI, | ||
the exclusive licensee of Linus Torvalds, owner of the mark on a world-wide basis. | ||
</p> | ||
|
||
<p> | ||
Arch Security Tracker is licensed under the terms of the MIT License, | ||
<a href="https://github.com/archlinux/arch-security-tracker" target="_blank" title="Arch Security Tracker source code">source code</a>. | ||
</p> | ||
</div> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. everything should be tab indented here, see our .editorconfig file. |
||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<p class="icon">{{ smiley }}</p> | ||
<pre class="text">nothing to do | ||
Yippie!</pre> | ||
<div> | ||
</div> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ideally this would be a separate commit in this PR |
||
{%- else %} | ||
<h1>Todo Lists</h1> | ||
{%- endif %} | ||
|
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.
Please use
em
/rem
for marging.