docs: Remove spurious styles from donate page
Correct link when not running on real URL
This commit is contained in:
parent
33e9db9745
commit
0db20c9c56
3 changed files with 6 additions and 6 deletions
|
@ -46,12 +46,12 @@ so it is easy to tweak stuff.
|
||||||
│ ├── index.html - the index page of the whole site
|
│ ├── index.html - the index page of the whole site
|
||||||
│ ├── page
|
│ ├── page
|
||||||
│ │ └── single.html - the render of all "page" type markdown
|
│ │ └── single.html - the render of all "page" type markdown
|
||||||
│ ├── partials - bits of HTML to include elsewhere
|
│ ├── partials - bits of HTML to include into layout .html files
|
||||||
│ │ └── version.html - the current version number
|
│ │ └── version.html - the current version number
|
||||||
│ ├── rss.xml - template for the RSS output
|
│ ├── rss.xml - template for the RSS output
|
||||||
│ ├── section - rendering for sections
|
│ ├── section - rendering for sections
|
||||||
│ │ └── commands.html - rendering for /commands/index.html
|
│ │ └── commands.html - rendering for /commands/index.html
|
||||||
│ ├── shortcodes - shortcodes for inserting bits of HTML
|
│ ├── shortcodes - shortcodes to call from markdown files
|
||||||
│ │ ├── cdownload.html - download the "current" version
|
│ │ ├── cdownload.html - download the "current" version
|
||||||
│ │ ├── download.html - download a version with the partials/version.html number
|
│ │ ├── download.html - download a version with the partials/version.html number
|
||||||
│ │ ├── provider.html - used to make provider list on the front page
|
│ │ ├── provider.html - used to make provider list on the front page
|
||||||
|
|
|
@ -46,7 +46,7 @@ the future.
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<a class="btn btn-secondary" role="button" href="https://github.com/sponsors/ncw" target="_blank"><i class="fab fa-github" aria-hidden="true"></i> GitHub Sponsors</a>
|
<a class="btn btn-secondary" role="button" href="https://github.com/sponsors/ncw" target="_blank"><i class="fab fa-github" aria-hidden="true"></i> GitHub Sponsors</a>
|
||||||
<div class="dropdown" style="display: inline; clear: none;">
|
<div class="dropdown" style="display: inline;">
|
||||||
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
<i class="fab fa-paypal" aria-hidden="true"></i> Paypal
|
<i class="fab fa-paypal" aria-hidden="true"></i> Paypal
|
||||||
</a>
|
</a>
|
||||||
|
@ -67,7 +67,7 @@ If you don't want to contribute monthly then of course we'd love a one
|
||||||
off donation.
|
off donation.
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div class="dropdown" style="display: inline; clear: none;">
|
<div class="dropdown" style="display: inline;">
|
||||||
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
<i class="fab fa-paypal" aria-hidden="true"></i> Paypal
|
<i class="fab fa-paypal" aria-hidden="true"></i> Paypal
|
||||||
</a>
|
</a>
|
||||||
|
@ -78,7 +78,7 @@ off donation.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a class="btn btn-secondary" role="button" href="https://www.paypal.me/nickcw" target="_blank"><i class="fab fa-paypal" aria-hidden="true"></i> Paypal.me</a>
|
<a class="btn btn-secondary" role="button" href="https://www.paypal.me/nickcw" target="_blank"><i class="fab fa-paypal" aria-hidden="true"></i> Paypal.me</a>
|
||||||
<div class="dropdown" style="display: inline; clear: none;">
|
<div class="dropdown" style="display: inline;">
|
||||||
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
<i class="fab fa-bitcoin" aria-hidden="true"></i> Bitcoin
|
<i class="fab fa-bitcoin" aria-hidden="true"></i> Bitcoin
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
|
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
|
||||||
<a class="navbar-brand" href="{{ .Site.BaseURL }}"><img class="rclone-logo" src="/img/logo_on_dark__horizontal_color.svg" alt="rclone logo"></a>
|
<a class="navbar-brand" href="/"><img class="rclone-logo" src="/img/logo_on_dark__horizontal_color.svg" alt="rclone logo"></a>
|
||||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
|
|
Loading…
Reference in a new issue