]> BookStack Code Mirror - website/blob - themes/bookstack/layouts/partials/footer.html
Merge pull request #110 from nferrari/patch-1
[website] / themes / bookstack / layouts / partials / footer.html
1     </div>
2
3     <footer>
4         <div class="container">
5             <div class="row">
6                 <div class="col-lg-4">
7                         <p class="text-small">
8                             BookStack - Created By <a href="https://danb.me" title="danb.me" target="_blank" rel="noopener">Dan Brown</a> and developed with the <a href="https://github.com/BookStackApp/BookStack/graphs/contributors" target="_blank" rel="noopener">community</a>.
9                         <br>
10                         <!-- Thanks to <a href="https://www.browserstack.com/" target="_blank">BrowserStack</a> for providing easy cross-browser testing. <br> -->
11                         Page generated with <a href="https://gohugo.io">hugo</a>, Site source can be found <a href="https://github.com/BookStackApp/website" rel="noopener" target="_blank">here on GitHub</a>.
12                         </p>
13                 </div>
14                 <div class="col-lg-8 col-md-9 menu">
15                     <a href="{{.Site.BaseURL}}docs"><span class="icon" aria-hidden="true">{{partial "icon/book.svg"}}</span>Documentation</a>
16                     <a href="{{.Site.BaseURL}}#features"><span class="icon" aria-hidden="true">{{partial "icon/star.svg"}}</span>Features</a>
17                     <a href="{{.Site.BaseURL}}#demo"><span class="icon" aria-hidden="true">{{partial "icon/touch_app.svg"}}</span>Demo</a>
18                     <a href="https://github.com/BookStackApp/BookStack" target="_blank"><span class="icon" aria-hidden="true">{{partial "icon/github.svg"}}</span>Github</a>
19                     <a href="https://discord.gg/ztkBqR2" target="_blank"><span class="icon" aria-hidden="true">{{partial "icon/discord.svg"}}</span>Discord</a>
20                     <a href="https://twitter.com/bookstack_app" target="_blank"><span class="icon" aria-hidden="true">{{partial "icon/twitter.svg"}}</span>Twitter</a>
21                     <a href="{{.Site.BaseURL}}blog" target="_blank"><span class="icon" aria-hidden="true">{{partial "icon/rss_feed.svg"}}</span>Blog</a>
22                 </div>
23             </div>
24             <div class="row">
25                 <div class="col-md-6">
26                     <p class="text-small">
27                         Latest Blog Post: 
28                         {{ range first 1 ( where .Site.Pages "Section" "blog") }}
29                                 <a href="{{.Permalink}}">{{ .Title }}</a>
30                         {{ end }}
31                         &nbsp;|&nbsp;
32                         <a href="/about/confluence-alternative">BookStack: A Confluence Alternative</a>
33                     </p>
34                 </div>
35                 <div class="col-md-6 text-right">
36                     <iframe src="https://github.com/sponsors/ssddanbrown/button" title="Sponsor ssddanbrown" height="35" width="116" style="border: 0;margin-top: 1rem;" loading="lazy"></iframe>
37                 </div>
38             </div>
39             <p class="text-small">
40                 This website uses a self-hosted instance of <a href="https://plausible.io/" target="_blank" rel="noreferrer">Plausible</a> for analytics.
41                 Our site stats can <a href="https://analytics.bookstackapp.com/bookstackapp.com" target="_blank" rel="noreferrer">be viewed here</a>. 
42
43                 We also use <a href="https://www.meilisearch.com/" target="_blank" rel="noreferrer">MeiliSearch</a> for providing better search.
44             </p>
45         </div>
46     </footer>
47
48
49     <script src="{{.Site.BaseURL}}libs/docs-searchbar.min.js"></script>
50     <script>
51         if (document.querySelector('.doc-search-input') !== null) {
52             docsSearchBar({
53                 hostUrl: 'https://search.bookstackapp.com',
54                 apiKey: '9ea2b6fd2a41f5243f741746d5281b7ff85451d51f4d50a270426a6dd430156d',
55                 indexUid: 'docs',
56                 inputSelector: '.doc-search-input',
57                 debug: false, // Set debug to true if you want to inspect the dropdown
58             })
59         }
60     </script>
61
62     <script src="{{.Site.BaseURL}}libs/codemirror/codemirror.min.js"></script>
63     <script src="{{.Site.BaseURL}}libs/codemirror/modes.js"></script>
64     <script src="{{.Site.BaseURL}}js/script.js"></script>
65 </body>
66 </html>