47 lines
2.2 KiB
HTML
Executable File
47 lines
2.2 KiB
HTML
Executable File
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{ .Site.Title }}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" href="/img/favicon/favicon-32x32.png" sizes="32x32">
|
|
<link rel="icon" type="image/png" href="/img/favicon/favicon-16x16.png" sizes="16x16">
|
|
<link rel="manifest" href="/img/favicon/manifest.json">
|
|
<link rel="mask-icon" href="/img/favicon/safari-pinned-tab.svg" color="#96cf05">
|
|
<meta name="apple-mobile-web-app-title" content="NetlifyCMS">
|
|
<meta name="application-name" content="NetlifyCMS">
|
|
<meta name="theme-color" content="#ffffff">
|
|
<link rel="stylesheet" href="/css/main.css"/>
|
|
{{ if or (eq .Section "docs") (eq .Title "Docs") }}
|
|
<link rel="stylesheet" href="/css/lib/prism.css"/>
|
|
{{ end }}
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.css" />
|
|
</head>
|
|
<body>
|
|
{{ range .Site.Data.notifications }}
|
|
{{ range . }}
|
|
{{ if .published }}
|
|
<a href="{{ .url }}" class="notification {{ if .loud }}notification-loud{{end}}">{{ .message }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
<header id="header" {{ if or (eq .Section "docs") (eq .Title "Docs") }}class="docs"{{ end }}>
|
|
<div class="contained">
|
|
<div class="logo-container">
|
|
<a href="/" class="logo"><img src="/img/netlify-cms-logo.svg"/></a>
|
|
{{ if or (eq .Section "docs") (eq .Title "Docs") }}
|
|
<a class="utility-input">
|
|
<img src="/img/search.svg" />
|
|
<input type="search" placeholder="Search the docs" class="algolia-search"/>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
<div class="nav-container">
|
|
<a class="nav-link docs-link" href="/docs">Docs</a>
|
|
<a class="nav-link contributing-link" href="/docs/contributor-guide">Contributing</a>
|
|
<a class="nav-link" href="/community">Community</a>
|
|
<a id="ghstars" class="github-button" href="https://github.com/netlify/netlify-cms" data-icon="octicon-star" data-show-count="true" aria-label="Star netlify/netlify-cms on GitHub">Star</a>
|
|
</div>
|
|
</div>
|
|
</header>
|