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
|
||||
│ ├── page
|
||||
│ │ └── 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
|
||||
│ ├── rss.xml - template for the RSS output
|
||||
│ ├── section - rendering for sections
|
||||
│ │ └── 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
|
||||
│ │ ├── download.html - download a version with the partials/version.html number
|
||||
│ │ ├── provider.html - used to make provider list on the front page
|
||||
|
|
|
@ -46,7 +46,7 @@ the future.
|
|||
|
||||
<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>
|
||||
<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">
|
||||
<i class="fab fa-paypal" aria-hidden="true"></i> Paypal
|
||||
</a>
|
||||
|
@ -67,7 +67,7 @@ If you don't want to contribute monthly then of course we'd love a one
|
|||
off donation.
|
||||
|
||||
<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">
|
||||
<i class="fab fa-paypal" aria-hidden="true"></i> Paypal
|
||||
</a>
|
||||
|
@ -78,7 +78,7 @@ off donation.
|
|||
</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>
|
||||
<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">
|
||||
<i class="fab fa-bitcoin" aria-hidden="true"></i> Bitcoin
|
||||
</a>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<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">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
|
Loading…
Reference in a new issue