diff --git a/conf.py b/conf.py index 79100d5..83956c5 100644 --- a/conf.py +++ b/conf.py @@ -1137,6 +1137,7 @@ MARKDOWN_EXTENSIONS = ['markdown.extensions.fenced_code', 'markdown.extensions.c # Copy the source files for your pages? # Setting it to False implies SHOW_SOURCELINK = False # COPY_SOURCES = True +COPY_SOURCES = False # Modify the number of Post per Index Page # Defaults to 10 @@ -1180,22 +1181,22 @@ GENERATE_ATOM = True # # This search form works for any site and looks good in the "site" theme where # it appears on the navigation bar: -# -# SEARCH_FORM = """ -# -# -# -# """ % SITE_URL -# + +SEARCH_FORM = """ + + + +""" % SITE_URL + # If you prefer a Google search form, here's an example that should just work: # SEARCH_FORM = """ # @@ -1352,7 +1353,7 @@ GENERATE_ATOM = True # If set to True, the tags 'draft', 'mathjax' and 'private' have special # meaning. If set to False, these tags are handled like regular tags. -USE_TAG_METADATA = False +USE_TAG_METADATA = True # If set to True, a warning is issued if one of the 'draft', 'mathjax' # and 'private' tags are found in a post. Useful for checking that diff --git a/files/assets/css/custom.css b/files/assets/css/custom.css index ea3099c..e18bf09 100644 --- a/files/assets/css/custom.css +++ b/files/assets/css/custom.css @@ -12,7 +12,7 @@ div.note { word-wrap: break-word; background-color: rgb(34,34,34); - border: 1px solid #258cd1; + border: 1px solid #007053; } div.admonition, div.hint, div.important, div.note, div.tip, div.sidebar, div.attention, div.caution, div.danger, div.error, div.warning, div.system-message { @@ -20,6 +20,6 @@ div.admonition, div.hint, div.important, div.note, div.tip, div.sidebar, div.att } div.note p.admonition-title { - background-color: #258cd1 !important; - border-bottom: 1px solid #258cd1; + background-color: #007053 !important; + border-bottom: 1px solid #007053; }