File tree Expand file tree Collapse file tree 5 files changed +42
-12
lines changed Expand file tree Collapse file tree 5 files changed +42
-12
lines changed Original file line number Diff line number Diff line change @@ -31,4 +31,16 @@ p.banner {
31
31
border-radius : 4px ;
32
32
color : # 004831 ;
33
33
background : # 76b900 ;
34
- }
34
+ }
35
+
36
+ footer div p {
37
+ font-size : 80% ;
38
+ }
39
+
40
+ footer div p a {
41
+ color : var (--small-font-color );
42
+ }
43
+
44
+ footer div p a : hover {
45
+ color : var (--small-font-color );
46
+ }
Original file line number Diff line number Diff line change
1
+ {% extends '!footer.html' %}
2
+ {% block contentinfo %}
3
+ < p >
4
+ < a href ="https://www.nvidia.com/en-us/about-nvidia/privacy-policy/ " target ="_blank "> Privacy Policy</ a > |
5
+ < a href ="https://www.nvidia.com/en-us/about-nvidia/privacy-center/ " target ="_blank "> Manage My Privacy</ a > |
6
+ < a href ="https://www.nvidia.com/en-us/preferences/start/ " target ="_blank "> Do Not Sell or Share My Data</ a > |
7
+ < a href ="https://www.nvidia.com/en-us/about-nvidia/terms-of-service/ " target ="_blank "> Terms of Service</ a > |
8
+ < a href ="https://www.nvidia.com/en-us/about-nvidia/accessibility/ " target ="_blank "> Accessibility</ a > |
9
+ < a href ="https://www.nvidia.com/en-us/about-nvidia/company-policies/ " target ="_blank "> Corporate Policies</ a > |
10
+ < a href ="https://www.nvidia.com/en-us/product-security/ " target ="_blank "> Product Security</ a > |
11
+ < a href ="https://www.nvidia.com/en-us/contact/ " target ="_blank "> Contact</ a >
12
+ </ p >
13
+ {{ super() }}
14
+ {% endblock %}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 30
30
import re
31
31
import subprocess
32
32
import sys
33
+ from datetime import datetime
33
34
from typing import List , cast
34
35
35
36
from natsort import natsorted
42
43
43
44
# -- Project information -----------------------------------------------------
44
45
46
+ year_range = "2021"
47
+ year_now = str (datetime .now ().year )
48
+ if year_range != year_now :
49
+ year_range = year_range + chr (8211 ) + year_now
50
+
45
51
project = "Transformers4Rec"
46
- copyright = "2021 , NVIDIA"
52
+ copyright = year_range + " , NVIDIA"
47
53
author = "NVIDIA"
48
54
49
55
108
114
}
109
115
html_copy_source = False
110
116
html_show_sourcelink = False
117
+ html_show_sphinx = False
111
118
112
119
# Add any paths that contain custom static files (such as style sheets) here,
113
120
# relative to this directory. They are copied after the builtin static files,
Original file line number Diff line number Diff line change 1
- Sphinx<3.6
1
+ Sphinx==3.5.4
2
+ sphinxcontrib-applehelp==1.0.4
3
+ sphinxcontrib-devhelp==1.0.2
4
+ sphinxcontrib-htmlhelp==2.0.1
5
+ sphinxcontrib-qthelp==1.0.3
6
+ sphinxcontrib-serializinghtml==1.1.5
2
7
sphinx_rtd_theme==1.0.0
3
8
sphinx-multiversion@git+https://github.com/mikemckiernan/sphinx-multiversion.git
4
9
sphinxcontrib-copydirs@git+https://github.com/mikemckiernan/sphinxcontrib-copydirs.git
@@ -8,4 +13,5 @@ jinja2<3.1
8
13
markupsafe==2.0.1
9
14
natsort==8.0.1
10
15
myst-nb<0.14
16
+ lxml<5.1
11
17
linkify-it-py<1.1
You can’t perform that action at this time.
0 commit comments