Skip to content

Commit 6ca105c

Browse files
committed
Adding new features
2 parents 4c97f11 + f3e098c commit 6ca105c

29 files changed

+94
-86
lines changed

_config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ theme_settings:
4747
google_analytics: # Tracking ID, e.g. "UA-000000-01"
4848
disqus_shortname:
4949
katex: true # Enable if using math markup
50-
#bootstrap: true # Enable bootstrap on bootstrap layout
5150

5251
# Localization strings
5352
str_follow_on: "Follow on"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

_includes/footer.html

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,12 @@
55
{% if site.theme_settings.footer_text %}
66
<footer class="site-footer">
77
<p class="text">{{ site.theme_settings.footer_text }}</p>
8-
9-
<div class="bootstrap-iso container">
10-
<div class="row">
11-
12-
</div>
13-
<div class="row">
14-
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
15-
<ul class="list-inline text-center type">
8+
<div class="footer-icons">
9+
<ul>
1610
<!-- Social icons from Font Awesome, if enabled -->
1711
{% include icons.html %}
1812
</ul>
1913
</div>
20-
</div>
21-
</div>
2214
</footer>
2315
{% endif %}
2416

_includes/head.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.theme_settings.description }}{% endif %}">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

7+
<!-- JQuery (used for bootstrap and jekyll search -->
8+
<script src="{{ " /assets/js/jquery-3.2.1.min.js " | prepend: site.baseurl }}"></script>
9+
10+
{% if page.bootstrap %}
711
<!-- Bootstrap-3.3.7 isolation CSS -->
812
<link rel="stylesheet" type="text/css" href="{{ " /assets/css/bootstrap-iso.css " | prepend: site.baseurl }}">
9-
10-
<!-- JQuery -->
11-
<script src="{{ " /assets/js/jquery-3.2.1.min.js " | prepend: site.baseurl }}"></script>
12-
13+
1314
<!-- Bootstrap JS -->
1415
<script src="{{ " /assets/js/bootstrap.min.js " | prepend: site.baseurl }}"></script>
16+
{% endif %}
1517

1618
<!-- Navbar JS -->
1719
<script src="{{ " /assets/js/navbar.js " | prepend: site.baseurl }}"></script>

0 commit comments

Comments
 (0)