This commit is contained in:
13
layouts/authors/taxonomy.html
Normal file
13
layouts/authors/taxonomy.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{{ define "main" }}
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ .Content }}
|
||||
{{ range .Data.Terms.Alphabetical }}
|
||||
<h2><a href="{{ .Page.RelPermalink }}">{{ .Page.LinkTitle }}</a></h2>
|
||||
<p>Affiliation: {{ .Page.Params.Affiliation }}</p>
|
||||
{{ with .Page.Resources.Get "portrait.jpg" }}
|
||||
{{ with .Fill "100x100" }}
|
||||
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="portrait">
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
26
layouts/index.html
Normal file
26
layouts/index.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="description" content="Welcome to the website of Acme Corporation, the leading creator of digital shapes on the planet, providing precise shape creations that are ready to use.">
|
||||
<meta name="viewport" content="width=device-width,
|
||||
initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="./index.css">
|
||||
<title>Acme Corporation</title>
|
||||
</head>
|
||||
<body class="home">
|
||||
<section>
|
||||
<img src="./image/logo.svg" alt="Acme Logo"
|
||||
width="64"/>
|
||||
<h1>Acme Corporation</h1>
|
||||
<h2>Shaping the world for you to live in</h2>
|
||||
<a href="./blog">Explore</a>
|
||||
</section>
|
||||
<footer>
|
||||
<a href="./about">About Us</a>
|
||||
<a href="./privacy">Privacy Policy</a>
|
||||
<a href="./terms">Terms of Use</a>
|
||||
<a href="./contact">Contact Us</a>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user