123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <nav aria-label="Navigation">
- <a href="{{ with .Site.Params.repo_url }}{{ . }}{{ else }}{{ .Site.BaseURL }}{{ end }}" class="project">
- <div class="banner">
- {{ with .Site.Params.logo }}
- <div class="logo">
- <img src="{{ $.Site.BaseURL }}{{ . }}">
- </div>
- Laradock
- {{ end }}
- <!--<div class="name">-->
- <!--<strong>{{ .Site.Title }} {{ with .Site.Params.version }}<span class="version">{{ . }}</span>{{ end }}</strong>-->
- <!--{{ with .Scratch.Get "repo_id" }}-->
- <!--<br>-->
- <!--{{ . }}-->
- <!--{{ end }}-->
- <!--</div>-->
- </div>
- </a>
- <div class="scrollable">
- <div class="wrapper">
- {{ if (eq (trim .Site.Params.provider " " | lower) "github") | and (isset .Site.Params "repo_url") }}
- <ul class="repo">
- <li class="repo-download">
- <a href="{{ .Site.Params.repo_url }}/archive/master.zip" target="_blank" title="Download" data-action="download">
- <i class="icon icon-download"></i> Download
- </a>
- </li>
- <li class="repo-stars">
- <a href="{{ .Site.Params.repo_url }}/stargazers" target="_blank" title="Stargazers" data-action="star">
- <i class="icon icon-star"></i> Stars
- <span class="count">–</span>
- </a>
- </li>
- </ul>
- <hr>
- {{ end }}
- <div class="toc">
- {{ if gt (len .Site.Menus.main) 0 }}
- <ul>
- {{ partial "nav" . }}
- </ul>
- {{ end }}
- <br>
- <br>
- <div>
- <!-- ------------------------------------------------------------------------- -->
- <!-- Google Ads -->
- <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
- <!-- Laradock Vertical -->
- <ins class="adsbygoogle"
- style="display:inline-block;width:237px;height:600px"
- data-ad-client="ca-pub-9826129398689742"
- data-ad-slot="9891442983"></ins>
- <script>
- (adsbygoogle = window.adsbygoogle || []).push({});
- </script>
- <!-- ------------------------------------------------------------------------- -->
- </div>
- <br>
- <br>
- <!--{{ if isset .Site.Params "author" }}-->
- <!--<hr>-->
- <!--<span class="section">The author</span>-->
- <!---->
- <!--<ul>-->
- <!--{{ with .Site.Social.twitter }}-->
- <!--<li>-->
- <!--<a href="https://twitter.com/{{ . }}" target="_blank" title="@{{ . }} on Twitter">-->
- <!--@{{ . }} on Twitter-->
- <!--</a>-->
- <!--</li>-->
- <!--{{ end }}-->
- <!--{{ with .Site.Social.github }}-->
- <!--<li>-->
- <!--<a href="https://github.com/{{ . }}" target="_blank" title="@{{ . }} on GitHub">-->
- <!--@{{ . }} on GitHub-->
- <!--</a>-->
- <!--</li>-->
- <!--{{ end }}-->
- <!--{{ with .Site.Social.email }}-->
- <!--<li>-->
- <!--<a href="mailto:{{ . }}" title="Email of {{ . }}">-->
- <!--Contact via email-->
- <!--</a>-->
- <!--</li>-->
- <!--{{ end }}-->
- <!--</ul>-->
- <!--{{ end }}-->
- </div>
- </div>
- </div>
- </nav>
|