fix next/previous buttons (#4088)

This commit is contained in:
nathan 2023-03-06 15:44:01 -05:00 committed by GitHub
parent a24dcd628e
commit 06d4524703
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -19,8 +19,6 @@ else:
THEME = 'themes/rusted'
THEME_STATIC_DIR = THEME + '/static'
PLUGIN_PATHS = ["plugins"]
PLUGINS = ['assets', 'neighbors']
TIMEZONE = 'America/New_York'
@ -52,11 +50,13 @@ scattered about.
"""
}
# Don't add search functionality for email.
PLUGIN_PATHS = ["plugins"]
# Don't add next/previous buttons search functionality for email.
if USE_EMAIL_THEME:
PLUGINS = ['webassets']
else:
PLUGINS = ['webassets', 'search']
PLUGINS = ['webassets', 'neighbors', 'search']
SEARCH_HTML_SELECTOR = "article"
MARKDOWN = {

View File

@ -166,7 +166,7 @@ body > footer {
display: inline-flex;
align-items: center;
line-height: 1.25;
color: $grey-colour-dark;
color: $text-color;
&:hover {
text-decoration: none;
.neighbor-title {