Merge branch 'master' of https://github.com/themefisher/dot
This commit is contained in:
commit
78785bd752
3 changed files with 34 additions and 8 deletions
28
README.md
28
README.md
|
@ -64,18 +64,38 @@ $ git clone git@github.com:themefisher/dot-hugo-documentation-theme.git
|
|||
- Buttons, Tip/Note/Info/Warning boxes, Expand
|
||||
- Responsive Ready
|
||||
|
||||
## Reporting Issues
|
||||
|
||||
## Reporting Issues or Contributing
|
||||
We use GitHub Issues as the official bug tracker for the Navigator Template. Please Search [existing issues](https://github.com/themefisher/dot-hugo-documentation-theme/issues). It’s possible someone has already reported the same problem.
|
||||
If your problem or idea is not addressed yet, [open a new issue](https://github.com/themefisher/dot-hugo-documentation-theme/issues)
|
||||
|
||||
Contributions are welcome and we will review and consider pull requests.
|
||||
Primary goals are:
|
||||
- Keep it simple.
|
||||
- Keep minimal (or zero) default configuration.
|
||||
- Avoid interference with user-defined layouts.
|
||||
- Avoid using JS if it can be solved by CSS.
|
||||
|
||||
## Technical Support or Questions (Paid)
|
||||
|
||||
If you have questions or need help integrating the product please [contact us](mailto:mehedi@themefisher.com) instead of opening an issue.
|
||||
If you have questions or need help integrating the product please [contact us](mailto:mehedi@themefisher.com) instead of opening an issue.
|
||||
|
||||
## Support Us (Author)
|
||||
This project needs you! If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, feel free to donate. Your donation is highly appreciated . Thank you!
|
||||
|
||||
* **[Donate $10](https://www.paypal.me/themefisher/10USD)**: Thank's for creating this project, here's a tea (or some juice) for you!
|
||||
* **[Donate $20](https://www.paypal.me/themefisher/20USD)**: Wow, I am stunned. Let me take you to the movies!
|
||||
* **[Donate $30](https://www.paypal.me/themefisher/30USD)**: I really appreciate your work, let's grab some lunch!
|
||||
* **[Donate $40](https://www.paypal.me/themefisher/40USD)**: That's some awesome stuff you did right there, dinner is on me!
|
||||
* **[Donate $50](https://www.paypal.me/themefisher/50USD)**: I really really want to support this project, great job!
|
||||
* **[Donate $100](https://www.paypal.me/themefisher/100USD)**: You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome!
|
||||
* **[Donate $1500](https://www.paypal.me/themefisher/1500USD)**: Go buddy, buy Macbook Pro for yourself!
|
||||
|
||||
Of course, you can also choose what you want to donate, all donations are awesome !
|
||||
|
||||
## Hire Us
|
||||
We are available for Hiring of your next HUGO project. Drop Us a mail [mehedi@themefisher.com](mailto:mehedi@themefisher.com)
|
||||
|
||||
|
||||
## Premium Themes
|
||||
|
||||
| [![Mega-Bundle-HUGO](https://gethugothemes.com/wp-content/uploads/edd/2019/09/Mega-Bundle-HUGO.png)](https://themefisher.com/products/hugo-mega-bundle/) | [![GoDocs](https://gethugothemes.com/wp-content/uploads/edd/2020/02/Home-Page-2.png)](https://gethugothemes.com/products/godocs-hugo-documentation-theme/) | [![Academia](https://gethugothemes.com/wp-content/uploads/edd/2019/08/Academia.jpg)](https://gethugothemes.com/products/academia/) |
|
||||
|
@ -84,4 +104,4 @@ We are available for Hiring of your next HUGO project. Drop Us a mail [mehedi@th
|
|||
| [![Airspace](https://gethugothemes.com/wp-content/uploads/2019/06/hugo-theme-Airspace.jpg)](https://gethugothemes.com/products/airspace-hugo-theme/) | [![Biztrox](https://gethugothemes.com/wp-content/uploads/2019/12/Biztrox.png)](https://gethugothemes.com/products/hugo-business-theme/) | [![Bexer](https://gethugothemes.com/wp-content/uploads/2019/06/hugo-theme-bexer.jpg)](https://gethugothemes.com/products/bexer-hugo-theme/) |
|
||||
| **Airspace** | **Biztrox** | **Bexer** |
|
||||
| [![Revolve](https://gethugothemes.com/wp-content/uploads/edd/2019/11/revolve.jpg)](https://gethugothemes.com/products/revolve-hugo/) | [![redlab](https://gethugothemes.com/wp-content/uploads/edd/2019/09/redlab-hugo-thumbnail.jpg)](https://gethugothemes.com/products/redlab-hugo/) | [![all](https://gethugothemes.com/wp-content/uploads/2019/12/get-more-hugo-themes.png)](https://gethugothemes.com/shop/) |
|
||||
| **Revolve** | **RedLab** | **More Hugo Themes** |
|
||||
| **Revolve** | **RedLab** | **More Hugo Themes** |
|
||||
|
|
|
@ -49,5 +49,11 @@
|
|||
<script src="{{ `plugins/match-height/jquery.matchHeight-min.js` | absURL }}"></script>
|
||||
|
||||
{{ template "_internal/google_analytics.html" . }}
|
||||
|
||||
{{ if templates.Exists ( printf "partials/overrides/header.html" ) }}
|
||||
{{ partial "partials/overrides/header.html" . }}
|
||||
{{ else }}
|
||||
{{ "<!-- create /layouts/partials/overrides/header.html in your own theme or root directory to add your custom content here -->" | safeHTML }}
|
||||
{{ end }}
|
||||
|
||||
</head>
|
||||
</head>
|
||||
|
|
|
@ -30,13 +30,13 @@
|
|||
</a>
|
||||
<div class="dropdown-menu">
|
||||
{{ range .Children }}
|
||||
<a class="dropdown-item" href="{{ .URL | relLangURL }}">{{ .Name }}</a>
|
||||
<a class="dropdown-item" href="{{ .URL | absLangURL }}">{{ .Name }}</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
</li>
|
||||
{{ else }}
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" href="{{ .URL | relLangURL }}">{{ .Name }}</a>
|
||||
<a class="nav-link text-dark" href="{{ .URL | absLangURL }}">{{ .Name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
@ -65,4 +65,4 @@
|
|||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</nav>
|
||||
|
|
Loading…
Reference in a new issue