mirror of
https://github.com/seigler/awesome-dash-platform
synced 2025-07-26 22:26:10 +00:00
feat: add footer nav menu
This commit is contained in:
parent
30fb82a912
commit
3f7043a149
3 changed files with 34 additions and 6 deletions
15
src/config/_default/config.yaml
Normal file
15
src/config/_default/config.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
baseurl: ''
|
||||||
|
relativeurls: true
|
||||||
|
languageCode: en
|
||||||
|
pluralizelisttitles: false
|
||||||
|
removePathAccents: true
|
||||||
|
title: Awesome Dash Platform
|
||||||
|
|
||||||
|
disableKinds:
|
||||||
|
- taxonomyTerm
|
||||||
|
|
||||||
|
params:
|
||||||
|
Description: >-
|
||||||
|
Useful resources for building things on top of Dash Platform
|
||||||
|
Image: >-
|
||||||
|
https://dashdevs.org/images/brand/dash_logo_2018_rgb_for_screens.png
|
11
src/config/_default/menus.yaml
Normal file
11
src/config/_default/menus.yaml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
footer:
|
||||||
|
- name: Chat
|
||||||
|
url: https://chat.dashdevs.org
|
||||||
|
- name: Bounties
|
||||||
|
url: https://bounties.dashdevs.org
|
||||||
|
- name: Github
|
||||||
|
url: https://github.com/andyfreer/awesome-dash-platform
|
||||||
|
- name: Get Listed
|
||||||
|
url: https://github.com/andyfreer/awesome-dash-platform/blob/master/CONTRIBUTING.md
|
||||||
|
- name: Dash.org
|
||||||
|
url: https://dash.org
|
|
@ -28,12 +28,14 @@
|
||||||
</nav>
|
</nav>
|
||||||
{{ template "main" . }}
|
{{ template "main" . }}
|
||||||
|
|
||||||
<footer class="mv4 montserrat ttu tc snow tracked b">
|
|
||||||
<a target="_blank" href="https://github.com/andyfreer/awesome-dash-platform" class="snow no-underline">Github</a> |
|
|
||||||
<a target="_blank" href="https://github.com/andyfreer/awesome-dash-platform/blob/master/CONTRIBUTING.md" class="snow no-underline"> Get Listed</a> |
|
|
||||||
<a target="_blank" href="https://www.dash.org" class="snow no-underline">Dash.org</a>
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
|
<footer class="mt2 pv4 w-90 mw9 center montserrat ttu snow tracked b bg-dark-blue">
|
||||||
|
<nav class="ph3" style="column-width: 12em">
|
||||||
|
{{ range .Site.Menus.footer }}
|
||||||
|
<a target="_blank" class="snow no-underline db" href="{{ .URL }}">{{ .Name }}</a>
|
||||||
|
{{ end }}
|
||||||
|
</nav>
|
||||||
|
</footer>
|
||||||
<script src='{{ .Site.BaseURL }}/app.js'></script>
|
<script src='{{ .Site.BaseURL }}/app.js'></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Add table
Add a link
Reference in a new issue