Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Miroslav Kratochvil
jekyll-theme-lcsb-default
Commits
f51f36e9
Commit
f51f36e9
authored
May 28, 2018
by
Jacek Lebioda
Browse files
Enabled extending css imports in the theme. Corrected link list on the index page.
parent
8321be0a
Changes
4
Hide whitespace changes
Inline
Side-by-side
_includes/css-imports.html
0 → 100644
View file @
f51f36e9
{% comment %}
Insert here CSS
<link/>
tags, and
<style/>
tags
if
needed
.
{
%
endcomment
%
}
\ No newline at end of file
_includes/head.html
View file @
f51f36e9
...
...
@@ -7,6 +7,8 @@
<link
rel=
"stylesheet"
href=
"{{ "
/
assets
/
main.css
"
|
relative_url
}}"
>
<link
rel=
"stylesheet"
href=
"{{ '/assets/fontawesome/css/fontawesome-all.min.css' | relative_url }}"
>
{%- include css-imports.html -%}
{%- if jekyll.environment == 'production' and site.google_analytics -%}
{%- include google-analytics.html -%}
{%- endif -%}
...
...
_includes/header.html
View file @
f51f36e9
...
...
@@ -40,7 +40,7 @@
{%- assign my_pages = site.pages | sort:"order" -%}
{%- for my_page in my_pages -%}
{%- if my_page.title -%}
{%- if my_page.title
and my_page.autogen == nil
-%}
{%- if page.url == my_page.url -%}
<a
class=
"page-link active"
href=
"{{ my_page.url | relative_url }}"
>
{{ my_page.title | escape }}
</a>
{% else %}
...
...
_includes/scripts.html
View file @
f51f36e9
{% comment %}
Uncomment those if needed
Add here additional javascript libraries and code.
Uncomment those if needed.
{% endcomment %}
{% comment %}
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
integrity=
"sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin=
"anonymous"
></script>
<script
src=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity=
"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin=
"anonymous"
></script>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment