mirror of
https://github.com/BioArchLinux/hugo-theme-bioarchlinux.git
synced 2025-03-10 06:14:01 +00:00
first commit
This commit is contained in:
commit
3fa3bbebc4
19 changed files with 747 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
public/
|
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
# All available Hugo versions are listed here: https://gitlab.com/pages/hugo/container_registry
|
||||
image: registry.gitlab.com/pages/hugo:latest
|
||||
|
||||
test:
|
||||
script:
|
||||
- hugo
|
||||
except:
|
||||
- master
|
||||
|
||||
pages:
|
||||
script:
|
||||
- hugo
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- master
|
||||
tags:
|
||||
- secure
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "{{ replace .TranslationBaseName '-' ' ' | title }}"
|
||||
date = "{{ .Date }}"
|
||||
draft = true
|
||||
|
||||
+++
|
10
layouts/_default/list.html
Normal file
10
layouts/_default/list.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{{ partial "header.html" . }}
|
||||
<div class="news-article box">
|
||||
{{ with .Data.Pages }}
|
||||
{{ range .ByDate}}
|
||||
<li><a {{ printf "href=%q" .URL | safeHTMLAttr }}>{{ default .Title .Params.heading }}</a></li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ partial "footer.html" . }}
|
||||
|
7
layouts/_default/single.html
Normal file
7
layouts/_default/single.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
{{ partial "header.html" . }}
|
||||
<div class="news-article box">
|
||||
<h2>{{.Title}}</h2>
|
||||
<div class="article-content" itemprop="articleBody">{{.Content}}</div>
|
||||
</div>
|
||||
{{ partial "footer.html" . }}
|
||||
|
16
layouts/index.html
Normal file
16
layouts/index.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
{{partial "header.html" .}}
|
||||
<div id="news">
|
||||
<h3>
|
||||
<a href="/" title="Browse the blogs">Latest Posts</a>
|
||||
<span class="arrow"></span>
|
||||
</h3>
|
||||
<a href="/index.xml" title="BioArchLinux News RSS Feed" class="rss-icon"><img width="16" height="16" src="/rss.png" alt="RSS Feed" /></a>
|
||||
{{ range where site.RegularPages "Type" "posts" }}
|
||||
<h4><a href="{{.Permalink}}" title="{{.Title}}"> {{.Title}}</a></h4>
|
||||
<p class="timestamp">{{.Date.Format "2006-01-02"}}<p>
|
||||
<div class="article-content">
|
||||
{{.Content}}
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
{{partial "footer.html" .}}
|
7
layouts/notes/single.html
Normal file
7
layouts/notes/single.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
{{ partial "header.html" . }}
|
||||
<div class="news-article box">
|
||||
<h2>{{.Title}}</h2>
|
||||
<div class="article-content" itemprop="articleBody">{{.Content}}</div>
|
||||
</div>
|
||||
{{ partial "footer.html" . }}
|
||||
|
30
layouts/partials/footer.html
Normal file
30
layouts/partials/footer.html
Normal file
|
@ -0,0 +1,30 @@
|
|||
</div>
|
||||
</div>
|
||||
<div id="content-right">
|
||||
<div id="nav-sidebar" class="widget">
|
||||
<h4>About</h4>
|
||||
<ul>
|
||||
{{ range .Site.Menus.sidebar}}
|
||||
<li><a href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
<div id="arch-sponsors" class="widget">
|
||||
<h4>Sponsors</h4>
|
||||
{{ range .Site.Menus.sponsor}}
|
||||
<a href="{{.URL}}" title="{{.Title}}">
|
||||
<img src="/images/sponsors/{{.Name}}.png" title="" alt="{{.Title}} logo" width="300px" >
|
||||
</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>Copyright © 2021-2022 <a href="https://bioarchlinux.org" title="Contact Community">BioArchLinux members</a>.</p>
|
||||
<p>The BioArchLinux name and logo are recognized
|
||||
<p>The registered trademark Linux® is used pursuant to a sublicense from LMI,
|
||||
the exclusive licensee of Linus Torvalds, owner of the mark on a world-wide basis.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
24
layouts/partials/header.html
Normal file
24
layouts/partials/header.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>BioArchLinux</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/arch.css" media="screen, projection" />
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
</head>
|
||||
<body class="">
|
||||
<div id="archnavbar" class="anb-home">
|
||||
<div id="archnavbarlogo"><h1><a href="/" title="Take me home">Arch Linux</a></h1></div>
|
||||
<div id="archnavbarmenu">
|
||||
<ul id="archnavbarlist">
|
||||
{{ range .Site.Menus.main }}
|
||||
<li class="anb-{{ .Name }}"><a href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="content">
|
||||
<div id="archdev-navbar">
|
||||
</div>
|
||||
<div id="content-left-wrapper">
|
||||
<div id="content-left">
|
10
layouts/posts/list.html
Normal file
10
layouts/posts/list.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{{ partial "header.html" . }}
|
||||
<div class="news-article box">
|
||||
{{ with .Data.Pages }}
|
||||
{{ range .ByDate}}
|
||||
<li><a {{ printf "href=%q" .URL | safeHTMLAttr }}>{{ default .Title .Params.heading }}</a></li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ partial "footer.html" . }}
|
||||
|
8
layouts/posts/single.html
Normal file
8
layouts/posts/single.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
{{ partial "header.html" . }}
|
||||
<div class="news-article box">
|
||||
<h2>{{.Title}}</h2>
|
||||
<p class="article-info">{{.Date.Format "2006-01-02"}} - {{ .Params.author}} </p>
|
||||
<div class="article-content" itemprop="articleBody">{{.Content}}</div>
|
||||
</div>
|
||||
{{ partial "footer.html" . }}
|
||||
|
12
layouts/reports/list.html
Normal file
12
layouts/reports/list.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
{{ partial "header.html" . }}
|
||||
<div class="news-article box">
|
||||
{{ with .Data.Pages }}
|
||||
<h2>Previous Arch Conf reports</h2>
|
||||
{{ range .ByDate}}
|
||||
<li><a {{ printf "href=%q" .URL | safeHTMLAttr }}>{{ default .Title .Params.heading }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ partial "footer.html" . }}
|
||||
|
8
layouts/reports/single.html
Normal file
8
layouts/reports/single.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
{{ partial "header.html" . }}
|
||||
<div class="news-article box">
|
||||
<h2>{{.Title}}</h2>
|
||||
<p class="article-info">{{.Date.Format "2006-01-02"}} - {{ .Params.author}} </p>
|
||||
<div class="article-content" itemprop="articleBody">{{.Content}}</div>
|
||||
</div>
|
||||
{{ partial "footer.html" . }}
|
||||
|
542
static/css/arch.css
Normal file
542
static/css/arch.css
Normal file
|
@ -0,0 +1,542 @@
|
|||
/*
|
||||
* Font sizing based on 16px browser defaults (use em):
|
||||
* 14px = 0.875em
|
||||
* 13px = 0.812em
|
||||
* 12px = 0.75em
|
||||
* 11px = 0.6875em
|
||||
*/
|
||||
|
||||
/*
|
||||
* ARCH GLOBAL NAVBAR
|
||||
* We're forcing all generic selectors with !important
|
||||
* to help prevent other stylesheets from interfering.
|
||||
*/
|
||||
|
||||
/* container for the entire bar */
|
||||
#archnavbar { min-height: 40px !important; padding: 10px 15px !important; background: #333 !important; border-bottom: 5px #08c solid !important; }
|
||||
#archnavbarlogo { float: left !important; margin: 0 !important; padding: 0 !important; height: 40px !important; width: 190px !important; background: url('archnavbar/biboarchlinux.png') no-repeat !important; }
|
||||
@media (-webkit-min-device-pixel-ratio: 1.2), (min--moz-device-pixel-ratio: 1.2), (-o-min-device-pixel-ratio: 2/1) {
|
||||
#archnavbarlogo { float: left !important; margin: 0 !important; padding: 0 !important; height: 40px !important; width: 190px !important; background: url(archnavbar/bioarchlinux.svg) no-repeat !important;background-size:100% !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* move the heading text offscreen */
|
||||
#archnavbarlogo h1 { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
|
||||
|
||||
/* make the link the same size as the logo */
|
||||
#archnavbarlogo a { display: block !important; height: 40px !important; width: 190px !important; }
|
||||
|
||||
/* display the list inline, float it to the right and style it */
|
||||
#archnavbarlist { display: block !important; list-style: none !important; margin: 0 !important; padding: 0 !important; font-size: 0px !important; text-align: right !important; }
|
||||
#archnavbarlist li { display: inline-block !important; font-size: 14px !important; font-family: sans-serif !important; line-height: 14px !important; padding: 14px 15px 0px !important; }
|
||||
|
||||
/* style the links */
|
||||
#archnavbarlist li a { color: #999; font-weight: bold !important; text-decoration: none !important; }
|
||||
#archnavbarlist li a:hover { color: white !important; text-decoration: underline !important; }
|
||||
|
||||
/* END ARCH GLOBAL NAVBAR */
|
||||
|
||||
/* simple reset */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
/* general styling */
|
||||
body {
|
||||
min-width: 650px;
|
||||
background: #f6f9fc;
|
||||
color: #222;
|
||||
font: normal 100% sans-serif;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: .33em 0 1em;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
margin-bottom: 1em;
|
||||
padding-left: 2em;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: square;
|
||||
}
|
||||
|
||||
code {
|
||||
font: 1.2em monospace;
|
||||
background: #ffd;
|
||||
padding: 0.15em 0.25em;
|
||||
}
|
||||
|
||||
pre {
|
||||
font: 1.2em monospace;
|
||||
border: 1px solid #bdb;
|
||||
background: #dfd;
|
||||
padding: 0.5em;
|
||||
margin: 1em;
|
||||
}
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
background: none;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 1.5em 2em;
|
||||
}
|
||||
|
||||
input {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
select[multiple] {
|
||||
padding: 1px 0;
|
||||
}
|
||||
|
||||
select[multiple] option {
|
||||
padding: 0 0.5em 0 0.3em;
|
||||
}
|
||||
|
||||
input[type=submit] {
|
||||
padding: 0 0.6em;
|
||||
}
|
||||
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
border-top: 1px solid #888;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
max-width: 90%;
|
||||
}
|
||||
|
||||
/* scale fonts down to a sane default (16 * .812 = 13px) */
|
||||
#content {
|
||||
font-size: 0.812em;
|
||||
}
|
||||
|
||||
/* link style */
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:link,
|
||||
th a:visited {
|
||||
color: #07b;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: #e90;
|
||||
}
|
||||
|
||||
/* special anchor elements */
|
||||
a.headerlink {
|
||||
visibility: hidden;
|
||||
padding-left: 0.5em;
|
||||
}
|
||||
|
||||
h3:hover > a.headerlink {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
/* headings */
|
||||
h2 {
|
||||
font-size: 1.5em;
|
||||
margin-bottom: 0.5em;
|
||||
border-bottom: 1px solid #888;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.25em;
|
||||
margin-top: .5em;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.15em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
/* general layout */
|
||||
#content {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#content-left-wrapper {
|
||||
float: left;
|
||||
width: 100%; /* req to keep content above sidebar in source code */
|
||||
}
|
||||
|
||||
#content-left {
|
||||
margin: 0 340px 0 0;
|
||||
}
|
||||
|
||||
#content-right {
|
||||
float: left;
|
||||
width: 300px;
|
||||
margin-left: -300px;
|
||||
}
|
||||
|
||||
div.box {
|
||||
margin-bottom: 1.5em;
|
||||
padding: 0.65em;
|
||||
background: #ecf2f5;
|
||||
border: 1px solid #bcd;
|
||||
}
|
||||
|
||||
#footer {
|
||||
clear: both;
|
||||
margin: 2em 0 1em;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
font-size: 0.85em;
|
||||
}
|
||||
|
||||
/* alignment */
|
||||
div.center,
|
||||
table.center,
|
||||
img.center {
|
||||
width: auto;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
p.center,
|
||||
td.center,
|
||||
th.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* table generics */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table .wrap {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
white-space: nowrap;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
th {
|
||||
vertical-align: middle;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
td {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* table pretty styles */
|
||||
table.pretty1 {
|
||||
width: auto;
|
||||
margin-top: 0.25em;
|
||||
margin-bottom: 0.5em;
|
||||
border-collapse: collapse;
|
||||
border: 1px solid #bcd;
|
||||
}
|
||||
|
||||
.pretty1 th {
|
||||
padding: 0.35em;
|
||||
background: #e4eeff;
|
||||
border: 1px solid #bcd;
|
||||
}
|
||||
|
||||
.pretty1 td {
|
||||
padding: 0.35em;
|
||||
border: 1px dotted #bcd;
|
||||
}
|
||||
|
||||
table.pretty2 {
|
||||
width: auto;
|
||||
margin-top: 0.25em;
|
||||
margin-bottom: 0.5em;
|
||||
border-collapse: collapse;
|
||||
border: 1px solid #bbb;
|
||||
}
|
||||
|
||||
.pretty2 th {
|
||||
padding: 0.35em;
|
||||
background: #eee;
|
||||
border: 1px solid #bbb;
|
||||
}
|
||||
|
||||
.pretty2 td {
|
||||
padding: 0.35em;
|
||||
border: 1px dotted #bbb;
|
||||
}
|
||||
|
||||
table.compact {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.compact td {
|
||||
padding: 0.25em 0 0.25em 1.5em;
|
||||
}
|
||||
|
||||
|
||||
/* definition lists */
|
||||
dl {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
dl dt,
|
||||
dl dd {
|
||||
margin-bottom: 4px;
|
||||
padding: 8px 0 4px;
|
||||
font-weight: bold;
|
||||
border-top: 1px dotted #bbb;
|
||||
}
|
||||
|
||||
dl dt {
|
||||
color: #333;
|
||||
float:left;
|
||||
padding-right:15px;
|
||||
}
|
||||
|
||||
/* forms and input styling */
|
||||
form p {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
width: 12em;
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
input[type=text],
|
||||
input[type=password],
|
||||
textarea {
|
||||
padding: 0.10em;
|
||||
}
|
||||
|
||||
form.general-form label,
|
||||
form.general-form .form-help {
|
||||
width: 10em;
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
form.general-form input[type=text],
|
||||
form.general-form textarea {
|
||||
width: 45%;
|
||||
}
|
||||
|
||||
/* archdev navbar */
|
||||
#archdev-navbar {
|
||||
margin: 1.5em 0;
|
||||
}
|
||||
|
||||
#archdev-navbar ul {
|
||||
list-style: none;
|
||||
margin: -0.5em 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#archdev-navbar li {
|
||||
display: inline;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
#archdev-navbar li a {
|
||||
padding: 0 0.5em;
|
||||
color: #07b;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* PAGE SPECIFIC STYLES
|
||||
*/
|
||||
|
||||
/* home: introduction */
|
||||
#intro p.readmore {
|
||||
margin: -0.5em 0 0 0;
|
||||
font-size: .9em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* home: news */
|
||||
#news {
|
||||
margin-top: 1.5em;
|
||||
}
|
||||
|
||||
#news h3 {
|
||||
float: left;
|
||||
padding-bottom: .5em
|
||||
}
|
||||
|
||||
#news div {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
#news div p {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
#news .more {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#news .rss-icon {
|
||||
float: right;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
#news h4 {
|
||||
clear: both;
|
||||
font-size: 1em;
|
||||
margin-top: 1.5em;
|
||||
border-bottom: 1px dotted #bbb;
|
||||
}
|
||||
|
||||
#news .timestamp {
|
||||
float: right;
|
||||
font-size: 0.85em;
|
||||
margin: -1.8em 0.5em 0 0;
|
||||
}
|
||||
|
||||
/* home: arrowed headings */
|
||||
#news h3 a {
|
||||
display: block;
|
||||
background: #1794D1;
|
||||
font-size: 15px;
|
||||
padding: 2px 10px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
#news a:active {
|
||||
color: white;
|
||||
}
|
||||
|
||||
h3 span.arrow {
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 6px solid transparent;
|
||||
border-right: 6px solid transparent;
|
||||
border-top: 6px solid #1794D1;
|
||||
margin: 0 auto;
|
||||
font-size: 0;
|
||||
line-height: 0px;
|
||||
}
|
||||
|
||||
/* home: headings inside news previews */
|
||||
#news div.article-content h1,
|
||||
#news div.article-content h2,
|
||||
#news div.article-content h3,
|
||||
#news div.article-content h4,
|
||||
#news div.article-content h5 {
|
||||
/* cancel styling for #news h3 */
|
||||
float: none;
|
||||
padding-bottom: 0em;
|
||||
/* cancel styling for #news h4 */
|
||||
clear: none;
|
||||
border-bottom: none;
|
||||
/* force the style of normal h5 */
|
||||
font-size: 1em;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 0em;
|
||||
}
|
||||
|
||||
/* home: sidebar navigation */
|
||||
#nav-sidebar ul {
|
||||
list-style: none;
|
||||
margin: 0.5em 0 0.5em 1em;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* home: sponsor banners */
|
||||
#arch-sponsors img {
|
||||
padding: 0.3em 0;
|
||||
}
|
||||
|
||||
/* home: sidebar components (navlist, sponsors, pkgsearch, etc) */
|
||||
div.widget {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
/* feeds page */
|
||||
#rss-feeds .rss {
|
||||
padding-right: 20px;
|
||||
background: url(rss.png) top right no-repeat;
|
||||
}
|
||||
|
||||
/* artwork: logo images */
|
||||
#artwork img.inverted {
|
||||
background: #333;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#artwork div.imagelist img {
|
||||
display: inline;
|
||||
margin: 0.75em;
|
||||
}
|
||||
|
||||
/* news: article list */
|
||||
.news-nav {
|
||||
float: right;
|
||||
margin-top: -2.2em;
|
||||
}
|
||||
|
||||
.news-nav .prev,
|
||||
.news-nav .next {
|
||||
margin: 0 1em;
|
||||
}
|
||||
|
||||
/* news: article pages */
|
||||
div.news-article .article-info {
|
||||
margin: 0;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
/* highlight current website in the navbar */
|
||||
#archnavbar.anb-home ul li#anb-home a,
|
||||
#archnavbar.anb-packages ul li#anb-packages a,
|
||||
#archnavbar.anb-download ul li#anb-download a {
|
||||
color: white !important;
|
||||
}
|
25
static/css/archnavbar/archnavbar.css
Normal file
25
static/css/archnavbar/archnavbar.css
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* ARCH GLOBAL NAVBAR
|
||||
* We're forcing all generic selectors with !important
|
||||
* to help prevent other stylesheets from interfering.
|
||||
*/
|
||||
|
||||
/* container for the entire bar */
|
||||
#archnavbar { min-height: 40px !important; padding: 10px 15px !important; background: #333 !important; border-bottom: 5px #08c solid !important; }
|
||||
#archnavbarlogo { background: url('bioarchlinux.png') no-repeat !important; }
|
||||
|
||||
/* move the heading/paragraph text offscreen */
|
||||
#archnavbarlogo p { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
|
||||
#archnavbarlogo h1 { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
|
||||
|
||||
/* make the link the same size as the logo */
|
||||
#archnavbarlogo a { display: block !important; height: 40px !important; width: 190px !important; }
|
||||
|
||||
/* display the list inline, float it to the right and style it */
|
||||
#archnavbar ul { display: block !important; list-style: none !important; margin: 0 !important; padding: 0 !important; font-size: 0px !important; text-align: right !important; }
|
||||
#archnavbar ul li { display: inline-block !important; font-size: 14px !important; font-family: sans-serif !important; line-height: 14px !important; padding: 14px 15px 0px !important; }
|
||||
|
||||
/* style the links */
|
||||
#archnavbar ul#archnavbarlist li a { color: #999; font-weight: bold !important; text-decoration: none !important; }
|
||||
#archnavbar ul li a:hover { color: white !important; text-decoration: underline !important; }
|
||||
|
BIN
static/css/archnavbar/bioarchlinux.png
Normal file
BIN
static/css/archnavbar/bioarchlinux.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
10
static/css/archnavbar/bioarchlinux.svg
Normal file
10
static/css/archnavbar/bioarchlinux.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="2500px" height="2500px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g><path style="opacity:1" fill="#000000" d="M 2197.5,1957.5 C 2182.2,1949.35 2166.87,1941.52 2151.5,1934C 2172.96,1951.12 2194.12,1968.62 2215,1986.5C 2217.67,1990.5 2220.33,1994.5 2223,1998.5C 2283.41,2110.99 2344.08,2223.33 2405,2335.5C 2416.31,2368.92 2426.81,2402.26 2436.5,2435.5C 2330.81,2375.65 2224.48,2316.82 2117.5,2259C 2037.41,2217.29 1956.08,2178.29 1873.5,2142C 1770.66,2096.72 1664.66,2060.39 1555.5,2033C 1524.8,2026.43 1494.14,2019.93 1463.5,2013.5C 1473.17,1972.34 1479.67,1930.67 1483,1888.5C 1489.26,1799.06 1475.93,1712.73 1443,1629.5C 1427.96,1593.05 1407.62,1560.05 1382,1530.5C 1360.33,1505.5 1333.83,1487.66 1302.5,1477C 1264.62,1466.78 1229.29,1472.44 1196.5,1494C 1162.84,1518.48 1136.01,1548.98 1116,1585.5C 1075.16,1665.17 1055.66,1749.84 1057.5,1839.5C 1057.18,1867.64 1059.01,1895.64 1063,1923.5C 1066.28,1942.16 1069.44,1960.83 1072.5,1979.5C 1071.71,2000.79 1061.04,2014.29 1040.5,2020C 952.483,2037.23 866.483,2061.56 782.5,2093C 667.21,2136.47 554.877,2186.81 445.5,2244C 361.699,2288.06 278.699,2333.4 196.5,2380C 166.95,2391.52 137.117,2402.02 107,2411.5C 106.333,2410.17 106.333,2408.83 107,2407.5C 111,2393.5 115,2379.5 119,2365.5C 124.667,2350.5 130.333,2335.5 136,2320.5C 306.206,2016.1 473.873,1710.1 639,1402.5C 719.453,1251.26 798.12,1098.93 875,945.5C 899.272,895.955 923.272,846.289 947,796.5C 947.414,796.043 947.914,795.709 948.5,795.5C 957.38,799.949 966.38,803.782 975.5,807C 961.899,792.25 958.732,775.417 966,756.5C 999.097,685.64 1031.1,614.307 1062,542.5C 1122.25,397.572 1181.42,252.239 1239.5,106.5C 1257.41,106.174 1275.24,106.508 1293,107.5C 1357.23,260.631 1422.56,413.297 1489,565.5C 1535.6,668.935 1583.93,771.602 1634,873.5C 1684.49,975.972 1735.82,1077.97 1788,1179.5C 1899.06,1392.62 2011.39,1604.96 2125,1816.5C 2149.19,1863.55 2173.36,1910.55 2197.5,1957.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#fefffe" d="M 1265.5,142.5 C 1307.48,239.148 1348.98,336.148 1390,433.5C 1480.17,642.851 1577.17,849.184 1681,1052.5C 1820.44,1325.39 1962.94,1596.39 2108.5,1865.5C 2013.75,1813.29 1913.42,1774.45 1807.5,1749C 1903.08,1797.99 1992.74,1855.66 2076.5,1922C 2113.06,1952.19 2149.89,1982.03 2187,2011.5C 2249.59,2126.69 2311.59,2242.03 2373,2357.5C 2256.02,2289.31 2136.52,2225.14 2014.5,2165C 1908.22,2112.91 1798.89,2068.24 1686.5,2031C 1627.77,2011.9 1568.1,1996.4 1507.5,1984.5C 1529.25,1878.64 1525.75,1773.64 1497,1669.5C 1480.32,1610.14 1452.66,1556.81 1414,1509.5C 1390.77,1482.47 1362.93,1461.64 1330.5,1447C 1275.24,1425.88 1222.91,1431.55 1173.5,1464C 1135.83,1491 1106,1524.83 1084,1565.5C 1046.34,1637.15 1025.34,1713.48 1021,1794.5C 1016.73,1857.22 1021.57,1919.22 1035.5,1980.5C 1035.39,1981.44 1035.06,1982.28 1034.5,1983C 933.611,2002.96 835.278,2031.63 739.5,2069C 625.51,2113.99 514.176,2164.99 405.5,2222C 322.783,2265.77 240.949,2310.94 160,2357.5C 254.998,2184.52 350.331,2011.52 446,1838.5C 576.546,1600.09 704.546,1360.09 830,1118.5C 876.238,1028.02 921.404,937.025 965.5,845.5C 966.002,844.479 966.668,844.312 967.5,845C 1033.77,898.835 1105.77,944.168 1183.5,981C 1215.13,996.196 1247.13,1010.2 1279.5,1023C 1177.01,951.62 1083.34,869.453 998.5,776.5C 1035.43,696.639 1071.26,616.306 1106,535.5C 1160.06,404.825 1213.22,273.825 1265.5,142.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#000000" d="M 1325.5,1805.5 C 1353.7,1803.17 1373.53,1814.84 1385,1840.5C 1391.03,1862.54 1389.03,1883.87 1379,1904.5C 1370.52,1921.78 1359.36,1937.12 1345.5,1950.5C 1361.87,1968.24 1376.03,1987.57 1388,2008.5C 1412.85,2055.61 1412.52,2102.61 1387,2149.5C 1376.13,2168.38 1362.97,2185.54 1347.5,2201C 1361.93,2216.68 1373.77,2234.18 1383,2253.5C 1389.9,2269.57 1392.23,2286.23 1390,2303.5C 1384.63,2328.2 1369.47,2342.7 1344.5,2347C 1318.79,2349.15 1300.12,2338.81 1288.5,2316C 1276.5,2315.5 1264.5,2315.33 1252.5,2315.5C 1248.68,2326.5 1241.68,2335 1231.5,2341C 1201.66,2355.23 1177.16,2349.07 1158,2322.5C 1150.92,2308.64 1148.58,2293.97 1151,2278.5C 1153.27,2261.36 1159.27,2245.7 1169,2231.5C 1176.79,2221.37 1184.96,2211.54 1193.5,2202C 1112.96,2119.42 1112.3,2036.25 1191.5,1952.5C 1185.19,1944.36 1178.69,1936.36 1172,1928.5C 1157.32,1908.79 1149.15,1886.63 1147.5,1862C 1151.26,1823.24 1172.6,1804.9 1211.5,1807C 1230.2,1811.04 1243.53,1821.7 1251.5,1839C 1262.85,1839.83 1274.18,1839.67 1285.5,1838.5C 1293.47,1820.87 1306.8,1809.87 1325.5,1805.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#fefffe" d="M 1330.5,1842.5 C 1340.34,1841.5 1347.18,1845.5 1351,1854.5C 1352.08,1869.52 1348.74,1883.52 1341,1896.5C 1336.07,1904.7 1330.4,1912.37 1324,1919.5C 1297.03,1947.47 1269.69,1975.14 1242,2002.5C 1237.67,2007.33 1233.51,2012.33 1229.5,2017.5C 1233.17,2017.83 1236.83,2018.17 1240.5,2018.5C 1263.5,2017.96 1286.5,2017.29 1309.5,2016.5C 1302.01,2008.21 1294.51,1999.87 1287,1991.5C 1282.81,1974.69 1289.31,1966.86 1306.5,1968C 1311.18,1969.68 1315.01,1972.51 1318,1976.5C 1331.54,1991.37 1343.54,2007.37 1354,2024.5C 1373.98,2058.79 1374.65,2093.45 1356,2128.5C 1349.11,2140.05 1341.45,2151.05 1333,2161.5C 1306.99,2188.68 1280.49,2215.35 1253.5,2241.5C 1264.81,2242.5 1276.15,2242.83 1287.5,2242.5C 1284,2232.14 1286.67,2223.98 1295.5,2218C 1305.03,2215.07 1312.87,2217.57 1319,2225.5C 1332.48,2239.98 1343.15,2256.32 1351,2274.5C 1353.34,2282.69 1354.01,2291.02 1353,2299.5C 1344.83,2312.52 1335.16,2313.86 1324,2303.5C 1321.59,2294.96 1319.09,2286.46 1316.5,2278C 1285.83,2277.33 1255.17,2277.33 1224.5,2278C 1222.14,2285.66 1220.31,2293.5 1219,2301.5C 1213.43,2310.85 1205.6,2313.35 1195.5,2309C 1189.32,2304.64 1186.66,2298.64 1187.5,2291C 1188.32,2275.19 1193.49,2261.02 1203,2248.5C 1209.33,2241.17 1215.67,2233.83 1222,2226.5C 1252.13,2197.21 1281.3,2167.21 1309.5,2136.5C 1307.23,2135.69 1304.9,2135.19 1302.5,2135C 1278.5,2134.46 1254.5,2134.63 1230.5,2135.5C 1230.35,2136.55 1230.52,2137.55 1231,2138.5C 1239.03,2145.24 1244.53,2153.58 1247.5,2163.5C 1245.26,2176.63 1237.59,2181.79 1224.5,2179C 1197.11,2155.74 1179.28,2126.57 1171,2091.5C 1168,2072.48 1170.34,2054.14 1178,2036.5C 1180.96,2029.59 1184.3,2022.92 1188,2016.5C 1199.83,1999.33 1213.16,1983.33 1228,1968.5C 1248.14,1949.36 1267.97,1929.86 1287.5,1910C 1275.5,1909.5 1263.5,1909.33 1251.5,1909.5C 1256.38,1921.55 1253.05,1930.38 1241.5,1936C 1236.27,1936.98 1231.27,1936.31 1226.5,1934C 1209.69,1918.54 1196.86,1900.38 1188,1879.5C 1185.72,1871.3 1185.05,1862.97 1186,1854.5C 1191.59,1843.31 1200.09,1840.47 1211.5,1846C 1213.38,1847.54 1214.88,1849.38 1216,1851.5C 1217.98,1857.35 1219.31,1863.35 1220,1869.5C 1220.79,1871.9 1221.96,1874.07 1223.5,1876C 1242.42,1876.34 1260.75,1876.51 1278.5,1876.5C 1290.55,1875.98 1302.55,1875.15 1314.5,1874C 1316.74,1865.46 1319.24,1856.96 1322,1848.5C 1324.64,1846.11 1327.47,1844.11 1330.5,1842.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#000000" d="M 2197.5,1957.5 C 2198.83,1958.17 2198.83,1958.17 2197.5,1957.5 Z"/></g>
|
||||
<g><path style="opacity:1" fill="#000000" d="M 1321.5,2050.5 C 1324.73,2051.41 1328.06,2051.75 1331.5,2051.5C 1335.67,2064.94 1336.51,2078.61 1334,2092.5C 1333.36,2095.61 1332.19,2098.44 1330.5,2101C 1290.83,2101.67 1251.17,2101.67 1211.5,2101C 1209.9,2100.73 1208.4,2100.23 1207,2099.5C 1201.9,2083.45 1202.4,2067.61 1208.5,2052C 1246.34,2051.83 1284,2051.33 1321.5,2050.5 Z"/></g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.4 KiB |
BIN
static/rss.png
Normal file
BIN
static/rss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 707 B |
12
theme.toml
Normal file
12
theme.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
name = "bioarchlinux"
|
||||
license = "MIT"
|
||||
licenselink = "https://github.com/nishanths/cocoa-hugo-theme/blob/master/LICENSE"
|
||||
description = "Consistent, responsive theme with clean typography"
|
||||
homepage = "https://github.com/nishanths/cocoa-hugo-theme"
|
||||
tags = ["open-sans", "minimal", "clean", "svg", "comments"]
|
||||
features = ["blog", "responsive", "404", "icons", "disqus", "metadata"]
|
||||
min_version = 0.26
|
||||
|
||||
[author]
|
||||
name = "Nishanth Shanmugham"
|
||||
homepage = "https://github.com/nishanths"
|
Loading…
Add table
Reference in a new issue