-
Notifications
You must be signed in to change notification settings - Fork 4
Add Nav Button to this Github Repo
To make it convenient to check this Wiki and such you can add a navigation button in the Admin page of your BlueSky instance to take you back to this canonical repo (as per the illustration below).
-
ssh into your Docker Droplet
-
Install nano into docker bluesky
docker exec -it bluesky bash
apt update
apt install nano
-
nano /usr/local/bin/BlueSky/Server/html/hooks/agent-links.php
-
copy the following into the end of that file:
<ul class="nav navbar-nav">
<a href="https://github.com/BlueSkyTools/BlueSkyConnect" class="btn btn-info navbar-btn visible-sm visible-md visible-lg"><i class="glyphicon glyphicon-info-sign"></i> Github Repo</a>
<a href="https://github.com/BlueSkyTools/BlueSkyConnect" class="visible-xs btn btn-info navbar-btn btn-lg"><i class="glyphicon glyphicon-info-sign"></i> Github Repo</a>
</ul>
- Write Out - Control O to save the file.