-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
72 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
title: Hextra Theme | ||
toc: false | ||
layout: hextra-home | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{{ define "main" }} | ||
<div class="mx-auto flex max-w-screen-xl"> | ||
{{ partial "sidebar.html" (dict "context" . "disableSidebar" true) }} | ||
<div class="w-full break-words flex min-h-[calc(100vh-var(--navbar-height))] min-w-0 justify-start pb-8 pr-[calc(env(safe-area-inset-right)-1.5rem)]"> | ||
<section class="flex max-w-[90rem] flex-col items-start gap-2 px-6 sm:px-4 pt-8 md:pt-12 pb-8"> | ||
<a class="inline-flex items-center rounded-full gap-2 px-3 py-1 text-xs text-gray-600 dark:text-gray-400 bg-gray-100 dark:bg-neutral-900 dark:border-neutral-800 " href="https://github.com/imfing/hextra"> | ||
<div class="w-2 h-2 rounded-full bg-primary-400"></div> | ||
<span>Free, open source</span> | ||
{{- partial "utils/icon" (dict "name" "arrow-circle-right" "attributes" "height=14") -}} | ||
</a> | ||
<h1 class="text-4xl font-bold leading-tight tracking-tighter md:text-5xl lg:leading-[1.1] mt-6"> | ||
Build modern website | ||
<br class="sm:block hidden" /> | ||
with Hugo and Markdown | ||
</h1> | ||
<p class="mt-4 text-xl text-gray-600 sm:text-xl"> | ||
Beautiful, batteries-included theme for Hugo. | ||
</p> | ||
</section> | ||
</div> | ||
</div> | ||
{{ end }} |