diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-11-18 23:18:18 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-11-18 23:18:18 +0300 |
commit | 74b65dd83f7c66d1f67f961b1fee65400b1fc334 (patch) | |
tree | dd9d5f0db2dbc733bcbbb04f98f0d18abf40031e /themes/neonxp/layouts/_default/list.html | |
parent | 1c1ae0094244868c63bd875c0cbfa50ced37de8d (diff) |
Фикс темы под мобильные устройства
Diffstat (limited to 'themes/neonxp/layouts/_default/list.html')
-rw-r--r-- | themes/neonxp/layouts/_default/list.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/themes/neonxp/layouts/_default/list.html b/themes/neonxp/layouts/_default/list.html index 065ee1a..6a399e7 100644 --- a/themes/neonxp/layouts/_default/list.html +++ b/themes/neonxp/layouts/_default/list.html @@ -1,19 +1,18 @@ {{ define "main" }} -<div class="single-page"> - <div class="sidebar"> - <article class="toc"> +<div class="row"> + <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 last-xs last-sm first-md first-lg sidebar"> + <article> <header>Навигатор</header> {{ partial "menu.html" (dict "menuID" "sections" "page" .) }} </article> </div> - <div class="h-entry"> + <div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8"> {{ if .Title }} <article> <header>{{ .Title }}</header> {{ .Content }} </article> {{ end }} - <h1>Страницы:</h1> {{ $paginator := .Paginate .Pages 7 }} {{ range $paginator.Pages }} {{ partial "list.html" . }} |