diff options
author | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2020-09-22 12:30:49 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-01 21:29:31 +0100 |
commit | b23aa6b753649711bb0e3d392fcbb2b3c17b8fba (patch) | |
tree | 74a5c1dae6b469653f4acce4a8e6fb4690dbe595 /documentation/_templates | |
parent | 60319a78dcb8cc83811f06c9ccbf3442b35de070 (diff) | |
download | poky-b23aa6b753649711bb0e3d392fcbb2b3c17b8fba.tar.gz |
sphinx: fix up some trademark and branding issues
The following changes were required after a review of trademark and
branding guidelines:
1. add (R) to 'Yocto Project' on the top left (above the logo)
2. Fix up the capitalization of the main page title
3. Add the copyright/legal blurb at the bottom of the page
For 3. it turned out to be simpler to override the whole footer.html
template, and maintain our own version. Also I took the liberty to
remove the 'next' and 'previous' buttons since I believe they are not
especially useful, given the navigation bar on the left side.
Reported-by: Tracey Erway <tracey.m.erway@intel.com>
(From yocto-docs rev: 6bae1372218e0b10258e4fa6fef72fc1708a329c)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/_templates')
-rw-r--r-- | documentation/_templates/footer.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/documentation/_templates/footer.html b/documentation/_templates/footer.html new file mode 100644 index 0000000000..508129ede4 --- /dev/null +++ b/documentation/_templates/footer.html | |||
@@ -0,0 +1,12 @@ | |||
1 | <footer> | ||
2 | <hr/> | ||
3 | <div role="contentinfo"> | ||
4 | <p> A Linux Foundation Collaborative Project. | ||
5 | <br> All Rights Reserved. Linux Foundation® and Yocto Project® are registered trademarks of the Linux Foundation. | ||
6 | <br>Linux® is a registered trademark of Linus Torvalds. | ||
7 | <br>© Copyright {{ copyright }} | ||
8 | <br>Last updated on {{ last_updated }} | ||
9 | </p> | ||
10 | </div> | ||
11 | </footer> | ||
12 | |||