mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
* docs: reclone hugo theme learn repo * docs: move athens custom html to hugo custom layout dir * docs: update HUGO_VERSION to 0.72.0
20 lines
752 B
HTML
20 lines
752 B
HTML
{{ partial "header.html" . }}
|
|
<span id="sidebar-toggle-span">
|
|
<a href="#" id="sidebar-toggle" data-sidebar-toggle=""><i class="fa fa-bars"></i> navigation</a>
|
|
</span>
|
|
|
|
{{if .Site.Home.Content }}
|
|
{{.Site.Home.Content}}
|
|
{{else}}
|
|
|
|
<img src="/banner.png"/>
|
|
<h1>Athens: Proxy for Go Modules</h1>
|
|
<p>Welcome to the Athens documentation.</p>
|
|
<ul>
|
|
<li><b>1. </b> Create an _index.md document in <b>content</b> folder and fill it with Markdown content</li>
|
|
<li><b>2. </b> Create an <b>index.html</b> file in the <b>static</b> folder and fill the file with HTML content</li>
|
|
<li><b>3. </b> Configure your server to automatically redirect home page to one your documentation page</li>
|
|
</ul>
|
|
{{end}}
|
|
{{ partial "footer.html" . }}
|