mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-22 13:05:38 +01:00
Updated base theme. Created header, split menu.
This commit is contained in:
parent
2bc248dd03
commit
d4433a4244
@ -18,36 +18,36 @@
|
||||
|
||||
<title>{{- if not .IsHome }}{{ .Title }} - {{ .Site.Title }}{{- else }}{{ .Site.Title }} - {{ .Site.Params.Tagline }}{{- end}}</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Ubuntu|Dosis" rel="stylesheet">
|
||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/style.css" />
|
||||
|
||||
{{ if eq (getenv "HUGO_ENV") "PRD" }}
|
||||
<meta name="robots" content="noindex,nofollow" />
|
||||
{{ else }}
|
||||
<meta name="robots" content="noindex,nofollow" />
|
||||
{{ end }}
|
||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/style.css" /> {{ if eq (getenv "HUGO_ENV") "PRD" }}
|
||||
<meta name="robots" content="noindex,nofollow" /> {{ else }}
|
||||
<meta name="robots" content="noindex,nofollow" /> {{ end }}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{{- if not .IsHome }}
|
||||
{{ partial "menu" . }}
|
||||
{{- else }}
|
||||
{{ partial "header_homepage" . }}
|
||||
{{- end }}
|
||||
{{ partial "navbar" . }}
|
||||
|
||||
{{- if .IsHome }} {{ partial "header_homepage" . }} {{- end }}
|
||||
|
||||
<div class="container" style="background-color: white;">
|
||||
<section class="section">
|
||||
<div class="columns">
|
||||
<div class="column is-3">
|
||||
{{ partial "sidebar" . }}
|
||||
</div>
|
||||
<div class="column is-9">
|
||||
{{ block "main" . }}{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="content has-text-centered">
|
||||
Copyright © {{ now.Format "2006" }} Yuzu Emulator
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer container has-text-centered">
|
||||
Copyright © {{ now.Format "2006" }} {{ .Site.Params.ProjectName }}
|
||||
</footer>
|
||||
|
||||
<script src="{{ .Site.BaseURL }}/js/script.js"></script>
|
||||
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.0.2/js/all.js"></script>
|
||||
{{- block "scripts" . }}{{- end }}
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.0.2/js/all.js"></script> {{- block "scripts" . }}{{- end }}
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,14 +1,3 @@
|
||||
{{- define "main" }}
|
||||
<section class="hero is-info">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<p class="title">
|
||||
Upcoming news...
|
||||
</p>
|
||||
<p class="subtitle">
|
||||
We'll have more information available soon!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{- end }}
|
||||
{{ define "main" }}
|
||||
<p>No articles have been written yet, check back soon!</p>
|
||||
{{ end }}
|
@ -1,25 +1 @@
|
||||
<div class="container is-mobile">
|
||||
<nav class="navbar" role="navigation" aria-label="main navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="{{ .Site.BaseURL }}">
|
||||
<img src="{{ .Site.BaseURL }}/images/menu.png" alt="{{ .Site.Title }} {{ .Site.Params.Tagline }}" width="112" height="28">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<section class="hero is-primary">
|
||||
<div class="hero-body">
|
||||
<div class="container">
|
||||
<h1 class="title">{{ .Site.Title }}</h1>
|
||||
<h2 class="subtitle">{{ .Site.Params.Tagline }}</h2>
|
||||
<a class="button is-primary is-inverted" href="{{ .Site.Params.GithubURL }}">
|
||||
<span class="icon">
|
||||
<i class="fab fa-github"></i>
|
||||
</span>
|
||||
<span>Source Code</span>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
<code>Cannot find override file: `./layouts/partials/header_homepage.html`</code>
|
14
layouts/partials/navbar.html
Normal file
14
layouts/partials/navbar.html
Normal file
@ -0,0 +1,14 @@
|
||||
<nav class="navbar is-transparent is-size-6" role="navigation" aria-label="main navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="{{ .Site.BaseURL }}">
|
||||
<img src="{{ .Site.BaseURL }}/images/menu.png" alt="{{ .Site.Title }} {{ .Site.Params.Tagline }}" width="112" height="28">
|
||||
</a>
|
||||
</div>
|
||||
<div class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<!-- TODO: Navbar goes here -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
1
layouts/partials/sidebar.html
Normal file
1
layouts/partials/sidebar.html
Normal file
@ -0,0 +1 @@
|
||||
<code>Cannot find override file: `./layouts/partials/sidebar.html`</code>
|
Loading…
Reference in New Issue
Block a user