Skip to content

Commit aae1c17

Browse files
committed
adding tagby to project
1 parent 1434c22 commit aae1c17

File tree

6 files changed

+35
-0
lines changed

6 files changed

+35
-0
lines changed

_config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -269,13 +269,15 @@ defaults:
269269
comments: true
270270
share: true
271271
related: true
272+
tagby: true
272273
# _pages
273274
- scope:
274275
path: _pages
275276
type: pages
276277
values:
277278
layout: single
278279
author_profile: true
280+
tagby: true
279281

280282
prose:
281283
rooturl: '_posts'

_layouts/archive.html

+4
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,7 @@ <h3 class="archive__subtitle">{{ page.title }}</h3>
2727
<iframe style="height:420px;width:100%;max-width:800px;margin:0px auto;" src="https://upscri.be/611534?as_embed" frameborder="0"></iframe>
2828

2929
</div>
30+
31+
{% if page.tagby == true %}
32+
{% include tagby.html %}
33+
{% endif %}

_layouts/default.html

+4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@
4747
{% include new-window-fix.html %}
4848
{% include newsletter.html %}
4949

50+
{% if page.tagby == true %}
51+
{% include tagby.html %}
52+
{% endif %}
53+
5054

5155
</body>
5256
</html>

_pages/legal.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ toc: true
1717
toc_sticky: true
1818
toc_label: "Legal"
1919
toc_icon: "file"
20+
tagby: false
2021
---
2122

2223
It’s worth clarifying that each and every thought on this website is my own, I’m responsible for what I say, and all errors, stupid comments, and idiocy are my own personal responsibility. These are my own thoughts, generated by me, representing me. They – and this website – are in no way affiliated with ExperiencEconomy Ltd. or any other company that I have any involvement in. If I’ve made a mistake, it’s my fault. If something I wrote made you laugh, you can thank me. Obviously, you should not rely on anything in this website as legal, financial, accounting, investment, tax, or any other kind of regulated advice. I’m merely a gal who has a bunch of opinions, no matter how stupid they are.

_sass/minimal-mistakes/_buttons.scss

+23
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,26 @@
9090
font-size: $type-size-7;
9191
}
9292
}
93+
94+
#tagby {
95+
float: bottom;
96+
float: right;
97+
position: fixed;
98+
bottom: 0;
99+
right: 0;
100+
width: 120px;
101+
height: 50px;
102+
background-color: #fff;
103+
box-shadow: 0 30px 40px rgba(0, 0, 0, 0.2);
104+
border-radius: 10px 0 0 0;
105+
z-index: 1;
106+
text-transform: none;
107+
color: mix(#fff, $text-color, 40%);
108+
font-size: ms(-1);
109+
}
110+
111+
#tagbyimg {
112+
margin: 10px;
113+
height: 30px;
114+
border-radius: 15px;
115+
}

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
author_profile: true
1515
pagination:
1616
enabled: true
17+
tagby: true
1718
---

0 commit comments

Comments
 (0)