Skip to content

Commit

Permalink
footer version. homepage fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
codecalm committed Nov 3, 2020
1 parent 35c591d commit 50a3402
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ title: Tabler
description: Premium and Open Source dashboard template with responsive and high quality UI.
homepage: https://tabler.io
github_url: https://github.com/tabler/tabler
changelog_url: https://github.com/tabler/tabler/releases
sponsor_url: https://github.com/sponsors/codecalm

mapbox_key: pk.eyJ1IjoiY29kZWNhbG0iLCJhIjoiSzRiOVJvQSJ9.BUVkTT6IYs83xSUs4H7bjQ
Expand Down
14 changes: 11 additions & 3 deletions src/pages/_includes/layout/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,17 @@
</ul>
</div>
<div class="col-12 col-lg-auto mt-3 mt-lg-0">
Copyright © {{ site.time | date: '%Y' }}
<a href="{{ site.base }}" class="link-secondary">{{ site.title }}</a>.
All rights reserved.
<ul class="list-inline list-inline-dots mb-0">
<li class="list-inline-item">
Copyright © {{ site.time | date: '%Y' }}
<a href="{{ site.base }}" class="link-secondary">{{ site.title }}</a>.
All rights reserved.
</li>
<li class="list-inline-item">
<a href="{{ site.changelog-url }}" target="_blank" class="link-secondary">v{{ site.data.package.version }}</a>
</li>
</ul>

</div>
</div>
</div>
Expand Down
4 changes: 1 addition & 3 deletions src/pages/_includes/parts/dropdown/days.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<div class="dropdown">
<a class="dropdown-toggle text-muted" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{{ include.value | default: 'Last 7 days' }}
</a>
<a class="dropdown-toggle text-muted" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{{ include.value | default: 'Last 7 days' }}</a>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item active" href="#">Last 7 days</a>
<a class="dropdown-item" href="#">Last 30 days</a>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/_includes/ui/avatar-list.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{% assign limit = include.limit | default: 5 %}
{% assign offset = include.offset | default: 0 %}
{% assign size = include['size'] %}
{% assign size = include['size'] | default: 'sm' %}
<div class="avatar-list{% if include.stacked %} avatar-list-stacked{% endif %}{% if include.class %} {{ include.class }}{% endif %}">
{% for person in site.data.people limit: limit offset: offset %}
{% include ui/avatar.html person=person size=size %}
{% include ui/avatar.html person=person size=size rounded=true %}
{% endfor %}
{% if include.text %}
{% include ui/avatar.html placeholder=include.text size=size %}
{% include ui/avatar.html placeholder=include.text size=size rounded=true %}
{% endif %}
</div>
1 change: 1 addition & 0 deletions src/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ $avatar-border-radius: $border-radius !default;
$avatar-font-size: $h4-font-size;

$link-decoration: none !default;
$link-hover-decoration: underline !default;

//Typography
$headings-font-weight: $font-weight-medium !default;
Expand Down

0 comments on commit 50a3402

Please sign in to comment.