Keybase patch (#185)
* New scripts to server across lan
* Updated README.md
* Keybase on { Personal }
This commit is contained in:
parent
26678401b7
commit
e1461f8b6c
4 changed files with 21 additions and 6 deletions
|
|
@ -75,6 +75,8 @@ The theme contains documentation in the form of [blog posts](https://panossakkos
|
|||

|
||||
### 404
|
||||

|
||||
### Keybase
|
||||

|
||||
### Mobile rendering
|
||||

|
||||
### Web App mode
|
||||
|
|
|
|||
|
|
@ -161,6 +161,14 @@ social:
|
|||
|
||||
404-img: "/img/labtocat.png"
|
||||
|
||||
##################
|
||||
# GPG on Keybase #
|
||||
##################
|
||||
|
||||
keybase-username: johnsmith
|
||||
keybase-in-social: True
|
||||
keybase-in-footer: True
|
||||
|
||||
################################################################################
|
||||
|
||||
# NB! Tread carefully if you want to change the variables below this point!
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
|
||||
<!-- Footer Start -->
|
||||
<!-- Footer Start -->
|
||||
|
||||
<footer>
|
||||
|
||||
|
|
@ -8,7 +7,11 @@
|
|||
<p><br><br></p>
|
||||
|
||||
<div class="container text-center">
|
||||
<p>Copyright © {{ site.author }} {{ site.time | date: "%Y" }}</p>
|
||||
<p>Copyright © {{ site.author }} {{ site.time | date: "%Y" }}</p>
|
||||
{% if site.keybase-in-footer %}
|
||||
<p style="font-size: 16px;"><a href="https://keybase.io/{{site.keybase-username}}" target="_blank"><i
|
||||
class="fa fa-key"></i> {{site.keybase-username}} on Keybase</a></p>
|
||||
{% endif %}
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
|
||||
<!-- Social Buttons Start -->
|
||||
|
||||
<ul class="list-inline social-buttons">
|
||||
{% for network in site.social %}
|
||||
{% for network in site.social %}
|
||||
<li><a href="{{ network.url }}" target="_blank"><i class="fa fa-{{ network.title }} fa-fw"></i></a></li>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% if site.keybase-in-social %}
|
||||
<li><a href="https://keybase.io/{{site.keybase-username}}" target="_blank"><i class="fa fa-key fa-fw"></i></a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
|
||||
<!-- Social Buttons End -->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue