try to fix docs problems

pull/2312/head
REJack 2019-10-06 09:57:16 +02:00
parent d8a6ddca02
commit c6a19a97f2
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888
3 changed files with 14 additions and 14 deletions

View File

@ -1,5 +1,5 @@
<script src="{{ 'assets/plugins/jquery/jquery.min.js' | prepend: site.baseurl }}"></script>
<script src="{{ 'assets/plugins/bootstrap/js/bootstrap.bundle.min.js' | prepend: site.baseurl }}"></script>
<script src="{{ 'assets/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js' | prepend: site.baseurl }}"></script>
<script src="{{ 'assets/js/adminlte.min.js' | prepend: site.baseurl }}"></script>
<script src="{{ 'assets/plugins/jquery/jquery.min.js' | absolute_url }}"></script>
<script src="{{ 'assets/plugins/bootstrap/js/bootstrap.bundle.min.js' | absolute_url }}"></script>
<script src="{{ 'assets/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js' | absolute_url }}"></script>
<script src="{{ 'assets/js/adminlte.min.js' | absolute_url }}"></script>

View File

@ -7,9 +7,9 @@
{% seo %}
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700">
<link rel="stylesheet" href="{{'assets/plugins/fontawesome-free/css/all.min.css' | prepend: site.baseurl}}">
<link rel="stylesheet" href="{{'assets/plugins/overlayScrollbars/css/OverlayScrollbars.min.css' | prepend: site.baseurl}}">
<link rel="stylesheet" href="{{'assets/css/docs.css' | prepend: site.baseurl}}">
<link rel="stylesheet" href="{{'assets/css/highlighter.css' | prepend: site.baseurl}}">
<link rel="stylesheet" href="{{'assets/css/adminlte.min.css' | prepend: site.baseurl}}">
<link rel="stylesheet" href="{{'assets/plugins/fontawesome-free/css/all.min.css' | absolute_url}}">
<link rel="stylesheet" href="{{'assets/plugins/overlayScrollbars/css/OverlayScrollbars.min.css' | absolute_url}}">
<link rel="stylesheet" href="{{'assets/css/docs.css' | absolute_url}}">
<link rel="stylesheet" href="{{'assets/css/highlighter.css' | absolute_url}}">
<link rel="stylesheet" href="{{'assets/css/adminlte.min.css' | absolute_url}}">
</head>

View File

@ -1,7 +1,7 @@
<aside class="main-sidebar sidebar-dark-primary elevation-4">
<a href="{{'index.html' | prepend: site.baseurl}}" class="brand-link logo-switch">
<img src="{{'assets/img/logo-xs.png' | prepend: site.baseurl}}" alt="AdminLTE Docs Logo Small" class="brand-image-xl logo-xs">
<img src="{{'assets/img/logo-xl.png' | prepend: site.baseurl}}" alt="AdminLTE Docs Logo Large" class="brand-image-xs logo-xl" style="left: 12px">
<a href="{{'index.html' | absolute_url}}" class="brand-link logo-switch">
<img src="{{'assets/img/logo-xs.png' | absolute_url}}" alt="AdminLTE Docs Logo Small" class="brand-image-xl logo-xs">
<img src="{{'assets/img/logo-xl.png' | absolute_url}}" alt="AdminLTE Docs Logo Large" class="brand-image-xs logo-xl" style="left: 12px">
</a>
<div class="sidebar">
<nav class="mt-2">
@ -22,7 +22,7 @@
{% assign item_url = '/' | append: item.url %}
{% endif %}
<a href="{% if item.url %}{{item.url | prepend: site.baseurl}}{% else %}#{% endif %}" class="nav-link {% if item_url == page.url %}active{% endif %}{% if subitem_active == 'true'%}active{% endif %}">
<a href="{% if item.url %}{{item.url | absolute_url}}{% else %}#{% endif %}" class="nav-link {% if item_url == page.url %}active{% endif %}{% if subitem_active == 'true'%}active{% endif %}">
<i class="nav-icon {{item.icon}}"></i>
<p>
{{item.title}}
@ -35,7 +35,7 @@
{% for subitem in item.subitems %}
{% assign subitem_url = '/' | append: subitem.url %}
<li class="nav-item">
<a href="{{subitem.url | prepend: site.baseurl}}" class="nav-link {% if subitem_url == page.url %}active{% endif %}">
<a href="{{subitem.url | absolute_url}}" class="nav-link {% if subitem_url == page.url %}active{% endif %}">
<i class="far fa-circle nav-icon"></i>
<p>{{subitem.title}}</p>
</a>