diff options
author | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-04-29 15:20:52 -0500 |
---|---|---|
committer | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-04-29 15:20:52 -0500 |
commit | a81d018e5d9cce17d8fe27b7c0145f5ff6286e20 (patch) | |
tree | ef512ef911014233b6544149ee79c97627896988 | |
parent | 099060bd31d9ef785c388d0df7b768c3d0641453 (diff) |
Hiden categories and remove search button because we are not have php support
-rw-r--r-- | libretube-theme/templates/base.html | 14 | ||||
-rw-r--r-- | pelicanconf.py | 4 |
2 files changed, 2 insertions, 16 deletions
diff --git a/libretube-theme/templates/base.html b/libretube-theme/templates/base.html index 51c3cef..8a76e6a 100644 --- a/libretube-theme/templates/base.html +++ b/libretube-theme/templates/base.html @@ -33,20 +33,6 @@ <div class="col-lg-2 align-self-center text-center"> <a href="{{ SITEURL }}/" rel="home"><img class="logo" src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/logo.svg" alt="logo"></a> </div> - <div class="col-lg-5 align-self-center"> - <form action="{{ SITEURL }}/buscar.php"><input placeholder="{{ _('Escribe para buscar...') }}" type="search" name="q" required></form> - </div> - - <div class="col-lg-5 menu-profile"> - <ul> - <li> - <div class="image-profile-menu"> - <img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/videocamera.svg" alt="profile"> - </div> - </li> - <li class="ml-2">{{ _('VideoTeca')}}</li> - </ul> - </div> <!-- End login --> </div> </div> diff --git a/pelicanconf.py b/pelicanconf.py index 5570d96..502c7c0 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -8,8 +8,8 @@ from __future__ import unicode_literals # (http://docs.getpelican.com/en/stable/settings.html#basic-settings) DEFAULT_CATEGORY = 'Sin categorÃa' DELETE_OUTPUT_DIRECTORY = False -DISPLAY_CATEGORIES_ON_MENU = True -DISPLAY_PAGES_ON_MENU = True +DISPLAY_CATEGORIES_ON_MENU = False +DISPLAY_PAGES_ON_MENU = False MARKDOWN = { 'extension_configs': { 'markdown.extensions.codehilite': {'css_class': 'highlight'}, |