You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
31 lines
1.2 KiB
{{define "content"}} |
|
<article class="landing-page"> |
|
<section class="hero"> |
|
<h1>Welcome to {{.SiteName}}</h1> |
|
<p class="lead">Your gateway to decentralized knowledge and community-driven content.</p> |
|
</section> |
|
|
|
<section class="features"> |
|
<h2>Explore Our Content</h2> |
|
<div class="feature-grid"> |
|
<div class="feature-card"> |
|
<h3><i data-lucide="book-open" class="icon-inline"></i> Wiki</h3> |
|
<p>Browse our comprehensive wiki documentation.</p> |
|
<ul> |
|
{{range .WikiPages}} |
|
<li><a href="/wiki/{{.DTag}}"><i data-lucide="file-text" class="icon-inline"></i> {{.Title}}</a></li> |
|
{{end}} |
|
</ul> |
|
</div> |
|
|
|
<div class="feature-card"> |
|
<h3><i data-lucide="file-text" class="icon-inline"></i> Blog</h3> |
|
<p>Read the latest articles and updates.</p> |
|
<a href="/blog" class="btn"><i data-lucide="arrow-right" class="icon-inline"></i> View Blog</a> |
|
</div> |
|
</div> |
|
</section> |
|
</article> |
|
{{end}} |
|
|
|
{{/* Feed is defined in components.html */}}
|
|
|