cleaned website stylesheets, reactivated ip address ws on artible pages
This commit is contained in:
parent
ca3719a6e5
commit
26f1f90c1d
@ -6,7 +6,6 @@ tags = ["paulbsd","services","web"]
|
|||||||
title = "PaulBSD Web Services"
|
title = "PaulBSD Web Services"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
|
||||||
# PaulBSD Web Services
|
# PaulBSD Web Services
|
||||||
|
|
||||||
PaulBSD.com provides many services like :
|
PaulBSD.com provides many services like :
|
||||||
|
@ -6,7 +6,6 @@ tags = ["paulbsd","netbsd","legacy"]
|
|||||||
title = "NetBSD 9.0 update"
|
title = "NetBSD 9.0 update"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
|
||||||
# NetBSD 9.0 update
|
# NetBSD 9.0 update
|
||||||
|
|
||||||
As the new major release of NetBSD being rolled, PaulBSD upgraded legacy production in Normandy to NetBSD 9.0 which provides new fun features as below :
|
As the new major release of NetBSD being rolled, PaulBSD upgraded legacy production in Normandy to NetBSD 9.0 which provides new fun features as below :
|
||||||
|
@ -2,5 +2,4 @@
|
|||||||
tags = []
|
tags = []
|
||||||
categories = []
|
categories = []
|
||||||
menu = ""
|
menu = ""
|
||||||
+++
|
+++
|
||||||
|
|
File diff suppressed because one or more lines are too long
@ -1,25 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
d=content/post
|
|
||||||
|
|
||||||
if [ ! -d ../syui.gitlab.io-comment ];then
|
|
||||||
git clone https://github.com/mba-hack/syui.gitlab.io-comment.git ../syui.gitlab.io-comment
|
|
||||||
fi
|
|
||||||
if [ -d ../${d} ];then
|
|
||||||
mkdir -p ../syui.gitlab.io-comment/_posts
|
|
||||||
f=$(echo -e "`ls -A ../${d}`\n`ls -A ../syui.gitlab.io-comment/_posts`" | sort | uniq -u)
|
|
||||||
cd ../syui.gitlab.io-comment/_posts
|
|
||||||
if [ -n "$f" ];then
|
|
||||||
n=`echo "$f" | wc -l`
|
|
||||||
echo $n
|
|
||||||
for (( i=1;i<=$n;i++ ))
|
|
||||||
do
|
|
||||||
t=`echo "$f" | awk "NR==$i"`
|
|
||||||
echo $t
|
|
||||||
touch $t
|
|
||||||
git add $t
|
|
||||||
git commit -m "update"
|
|
||||||
git push
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
fi
|
|
@ -1,8 +0,0 @@
|
|||||||
#!/bin/zsh
|
|
||||||
#github=github.com/users/syui/contributions_calendar_data
|
|
||||||
f=${0:a:h:h}/static/json/datas.json
|
|
||||||
u=gitlab.com/u/$USER/calendar
|
|
||||||
t=`curl -sL $u|grep '{"'`
|
|
||||||
echo ${t%,}|jq .
|
|
||||||
echo ${t%,} >! $f
|
|
||||||
|
|
@ -1,57 +0,0 @@
|
|||||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
|
||||||
<script src="../static/js/jquery.xdomainajax.js"></script>
|
|
||||||
<script src="../static/bower_components/d3/d3.min.js" charset="utf-8"></script>
|
|
||||||
<script src="../static/bower_components/cal-heatmap/cal-heatmap.min.js"></script>
|
|
||||||
<link rel="stylesheet" href="../static/bower_components/cal-heatmap/cal-heatmap.css" />
|
|
||||||
<!--<script src="https://raw.githubusercontent.com/syui/jquery.fn/master/cross-domain-ajax/jquery.xdomainajax.js"></script>-->
|
|
||||||
<!--diff : https://github.com/syui/jquery.fn/blob/master/cross-domain-ajax/jquery.xdomainajax.js#L62 -->
|
|
||||||
<h3>Calendar Activities</h3>
|
|
||||||
<div id="cal-heatmap"></div>
|
|
||||||
<div id="example-heatmap"></div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
jQuery(function ($) {
|
|
||||||
var json;
|
|
||||||
$.ajax({
|
|
||||||
type: 'GET',
|
|
||||||
url: 'https://gitlab.com/u/syui/calendar',
|
|
||||||
dataType: 'html',
|
|
||||||
async: false,
|
|
||||||
cache: false,
|
|
||||||
success: function(data) {
|
|
||||||
var content = $(data.responseText).find('script').html();
|
|
||||||
var tmp = content.replace("<![CDATA[", "").replace("]]>", "");
|
|
||||||
var s = tmp.indexOf( "{" );
|
|
||||||
var e = tmp.indexOf( "}" );
|
|
||||||
json = tmp.substring( s, e+1 );
|
|
||||||
$('#gitlab-calendar-activities').text(json);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
setTimeout( $('#example-heatmap').each(function () {
|
|
||||||
//setTimeout( function() {
|
|
||||||
if( json != null ){
|
|
||||||
var obj = $.parseJSON(json);
|
|
||||||
var now = new Date();
|
|
||||||
new CalHeatMap().init({
|
|
||||||
data: obj,
|
|
||||||
domain: 'month',
|
|
||||||
domainLabelFormat: '%Y-%m',
|
|
||||||
itemSelector: '#example-heatmap',
|
|
||||||
legend: [1, 3, 5, 7],
|
|
||||||
legendColors: {
|
|
||||||
min: "#efefef",
|
|
||||||
max: "steelblue",
|
|
||||||
empty: "#efefef"
|
|
||||||
},
|
|
||||||
tooltip: true,
|
|
||||||
start: new Date(now.getFullYear(), now.getMonth() - 9)
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
setTimeout( arguments.callee, 100 );
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<div id="gitlab-calendar-activities" style="display:none;"></div>
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
|||||||
#!/bin/zsh
|
|
||||||
d=${0:a:h:h}
|
|
||||||
# backup
|
|
||||||
h=${0:a:h}
|
|
||||||
if cat $j|jq . ;then
|
|
||||||
cp $j $h
|
|
||||||
fi
|
|
||||||
h=$h/PagesIndex.json
|
|
||||||
j=$d/static/bower_components/lunr.js/PagesIndex.json
|
|
||||||
t=`cat $j |jq '.[]'|sed -e 's#/post##g'`
|
|
||||||
a=`cat $j | sed -e 's#/post##g'`
|
|
||||||
echo $a >! $j
|
|
||||||
t=`echo $t|jq -r '.href'|cut -d - -f 1-4`
|
|
||||||
|
|
||||||
for (( i=1;i<=`echo "$t"|wc -l`;i++ ))
|
|
||||||
do
|
|
||||||
f=`echo "$t"|awk "NR==$i"`
|
|
||||||
c=`echo $f|tr '-' '/'`
|
|
||||||
sed -i "" "s#${f}#${c}#g" $j
|
|
||||||
done
|
|
||||||
|
|
||||||
cat $j
|
|
||||||
|
|
||||||
diff $j $h
|
|
@ -9,14 +9,14 @@
|
|||||||
<div class="article-inner">
|
<div class="article-inner">
|
||||||
<div class="article-entry" itemprop="articleBody">
|
<div class="article-entry" itemprop="articleBody">
|
||||||
<p>
|
<p>
|
||||||
<center>
|
<center>
|
||||||
<h1>
|
<h1>
|
||||||
{{with .Site.Data.l10n.page_not_found.title}}{{.}}{{end}}
|
{{with .Site.Data.l10n.page_not_found.title}}{{.}}{{end}}
|
||||||
</h1>
|
</h1>
|
||||||
<h3>
|
<h3>
|
||||||
{{with .Site.Data.l10n.page_not_found.subtitle}}{{.}}{{end}}
|
{{with .Site.Data.l10n.page_not_found.subtitle}}{{.}}{{end}}
|
||||||
</h3>
|
</h3>
|
||||||
</center>
|
</center>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -29,4 +29,4 @@
|
|||||||
{{ partial "footer" . }}
|
{{ partial "footer" . }}
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -14,7 +14,7 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
{{ $paginator := .Paginate $pages }}
|
{{ $paginator := .Paginate $pages }}
|
||||||
{{ range $paginator.Pages }}
|
{{ range $paginator.Pages }}
|
||||||
{{ .Render "summary" }}
|
{{ .Render "summary" }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@ -26,4 +26,5 @@
|
|||||||
|
|
||||||
{{ partial "footer" . }}
|
{{ partial "footer" . }}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
</html>
|
@ -10,4 +10,5 @@
|
|||||||
|
|
||||||
{{ partial "footer" . }}
|
{{ partial "footer" . }}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
</html>
|
@ -5,7 +5,8 @@
|
|||||||
|
|
||||||
{{ if isset .Params "banner" }}
|
{{ if isset .Params "banner" }}
|
||||||
<a href="{{ .Permalink }}" class="thumbnail">
|
<a href="{{ .Permalink }}" class="thumbnail">
|
||||||
<span style="background-image:url({{ .Site.BaseURL }}{{ .Params.banner }})" alt="{{ .Title }}" class="thumbnail-image"></span>
|
<span style="background-image:url({{ .Site.BaseURL }}{{ .Params.banner }})" alt="{{ .Title }}"
|
||||||
|
class="thumbnail-image"></span>
|
||||||
</a>
|
</a>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<a href="{{ .Permalink }}" class="thumbnail">
|
<a href="{{ .Permalink }}" class="thumbnail">
|
||||||
@ -23,4 +24,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
@ -26,4 +26,4 @@
|
|||||||
{{ partial "footer" . }}
|
{{ partial "footer" . }}
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -8,19 +8,19 @@
|
|||||||
<div id="example-heatmap"></div>
|
<div id="example-heatmap"></div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var cal = new CalHeatMap();
|
var cal = new CalHeatMap();
|
||||||
cal.init({
|
cal.init({
|
||||||
itemSelector: "#example-heatmap",
|
itemSelector: "#example-heatmap",
|
||||||
domain: "week",
|
domain: "week",
|
||||||
subDomain: "hour",
|
subDomain: "hour",
|
||||||
data: "/hugo-theme-wave/json/datas-years.json",
|
data: "/hugo-theme-wave/json/datas-years.json",
|
||||||
start: new Date(2000, 0, 5),
|
start: new Date(2000, 0, 5),
|
||||||
cellSize: 10,
|
cellSize: 10,
|
||||||
range: 2,
|
range: 2,
|
||||||
previousSelector: "#example-c-PreviousDomain-selector",
|
previousSelector: "#example-c-PreviousDomain-selector",
|
||||||
nextSelector: "#example-c-NextDomain-selector",
|
nextSelector: "#example-c-NextDomain-selector",
|
||||||
legend: [2, 4, 6, 8],
|
legend: [2, 4, 6, 8],
|
||||||
tooltip: true
|
tooltip: true
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<div id="blog-archives" class="category">
|
<div id="blog-archives" class="category">
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
@ -36,10 +36,6 @@ cal.init({
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
{{ partial "footer" . }}
|
{{ partial "footer" . }}
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -1,18 +1,19 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
|
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
|
||||||
{{ partial "head" . }}
|
{{ partial "head" . }}
|
||||||
<body>
|
|
||||||
<div class="container">
|
<body>
|
||||||
<div id="container">
|
<div class="container">
|
||||||
{{ partial "header" . }}
|
<div id="container">
|
||||||
<!--{{ partial "home" . }}-->
|
{{ partial "header" . }}
|
||||||
<div class="outer">
|
<!--{{ partial "home" . }}-->
|
||||||
{{ partial "article_list" . }}
|
<div class="outer">
|
||||||
{{ partial "sidebar" . }}
|
{{ partial "article_list" . }}
|
||||||
</div>
|
{{ partial "sidebar" . }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ partial "footer" . }}
|
</div>
|
||||||
{{ partial "footer_js" . }}
|
{{ partial "footer" . }}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
</html>
|
@ -1,13 +1,8 @@
|
|||||||
<div class="article-inner-first">
|
<div class="article-inner-first">
|
||||||
|
|
||||||
<h2>
|
<h2>
|
||||||
A simple, lightweight theme
|
A simple, lightweight theme
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
You've reached the website for <b>Arch Linux</b> user, I was in mobile-enabled.
|
You've reached the website for <b>Arch Linux</b> user, I was in mobile-enabled.
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
||||||
</div>
|
|
||||||
<!--
|
|
||||||
<div class="rss-right"><a href="{{ .RelPermalink }}"><i class="fa fa-rss-square fa-lg"></i></a></div>
|
|
||||||
-->
|
|
@ -1,13 +1,7 @@
|
|||||||
<footer class="article-footer">
|
<footer class="article-footer">
|
||||||
<!--
|
|
||||||
<a data-url="{{ .Permalink }}" data-id="{{ .File.UniqueID }}" class="article-share-link">
|
|
||||||
{{with .Site.Data.l10n.articles.share}}{{.}}{{end}}
|
|
||||||
</a>
|
|
||||||
-->
|
|
||||||
{{ if not (eq .Site.DisqusShortname "") }}
|
{{ if not (eq .Site.DisqusShortname "") }}
|
||||||
|
|
||||||
<a href="{{ .Permalink }}/#disqus_thread" class="article-comment-link">
|
<a href="{{ .Permalink }}/#disqus_thread" class="article-comment-link">
|
||||||
{{with .Site.Data.l10n.articles.comments}}{{.}}{{end}}
|
{{with .Site.Data.l10n.articles.comments}}{{.}}{{end}}
|
||||||
</a>
|
</a>
|
||||||
{{end}}
|
{{end}}
|
||||||
</footer>
|
</footer>
|
@ -20,15 +20,15 @@
|
|||||||
{{ partial "article_header" . }}
|
{{ partial "article_header" . }}
|
||||||
<div class="article-entry" itemprop="articleBody">
|
<div class="article-entry" itemprop="articleBody">
|
||||||
<p>
|
<p>
|
||||||
{{ .Summary }} ...
|
{{ .Summary }} ...
|
||||||
</p>
|
</p>
|
||||||
<p class="article-more-link">
|
<p class="article-more-link">
|
||||||
<a href="{{ .Permalink }}">
|
<a href="{{ .Permalink }}">
|
||||||
Read more
|
Read more
|
||||||
<!--
|
<!--
|
||||||
{{ with .Site.Data.l10n.articles.read_more }}{{ . }}{{ end }}
|
{{ with .Site.Data.l10n.articles.read_more }}{{ . }}{{ end }}
|
||||||
-->
|
-->
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<!--
|
<!--
|
||||||
@ -38,4 +38,4 @@
|
|||||||
</article>
|
</article>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ partial "pagination" . }}
|
{{ partial "pagination" . }}
|
||||||
</section>
|
</section>
|
@ -1,4 +1,5 @@
|
|||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
|
|
||||||
<div class="outer">
|
<div class="outer">
|
||||||
<div id="footer-info" class="inner">
|
<div id="footer-info" class="inner">
|
||||||
<footer id="footer-left">
|
<footer id="footer-left">
|
||||||
@ -8,4 +9,16 @@
|
|||||||
<footer id="footer-right">Your IP address : <a id="dip">{{ "{{" }} returnstring {{ "}}" }}</a></footer>
|
<footer id="footer-right">Your IP address : <a id="dip">{{ "{{" }} returnstring {{ "}}" }}</a></footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
<script src="{{ .Site.BaseURL }}js/main.js">
|
||||||
|
</script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js">
|
||||||
|
</script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/highlight.min.js">
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
hljs.initHighlightingOnLoad();
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://raw.githubusercontent.com/jeresig/jquery.hotkeys/master/jquery.hotkeys.js">
|
||||||
|
</script>
|
||||||
|
</footer>
|
@ -1,12 +0,0 @@
|
|||||||
{{ template "_internal/google_analytics.html" . }}
|
|
||||||
<script src="{{ .Site.BaseURL }}js/main.js">
|
|
||||||
</script>
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js">
|
|
||||||
</script>
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/highlight.min.js">
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
hljs.initHighlightingOnLoad();
|
|
||||||
</script>
|
|
||||||
<script type="text/javascript" src="https://raw.githubusercontent.com/jeresig/jquery.hotkeys/master/jquery.hotkeys.js">
|
|
||||||
</script>
|
|
@ -19,7 +19,9 @@
|
|||||||
<script src="{{ .Site.BaseURL }}bower_components/highlightjs/highlight.pack.min.js"></script>
|
<script src="{{ .Site.BaseURL }}bower_components/highlightjs/highlight.pack.min.js"></script>
|
||||||
<script src="{{ .Site.BaseURL }}bower_components/vue/vue.min.js"></script>
|
<script src="{{ .Site.BaseURL }}bower_components/vue/vue.min.js"></script>
|
||||||
<script src="{{ .Site.BaseURL }}bower_components/axios/axios.min.js"></script>
|
<script src="{{ .Site.BaseURL }}bower_components/axios/axios.min.js"></script>
|
||||||
<script>hljs.initHighlightingOnLoad();</script>
|
<script>
|
||||||
|
hljs.initHighlightingOnLoad();
|
||||||
|
</script>
|
||||||
<script type="text/x-mathjax-config">
|
<script type="text/x-mathjax-config">
|
||||||
MathJax.Hub.Config({
|
MathJax.Hub.Config({
|
||||||
tex2jax: {
|
tex2jax: {
|
||||||
@ -32,11 +34,11 @@
|
|||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/highlightjs/styles/monokai.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/highlightjs/styles/monokai.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/bootstrap/css/bootstrap.min.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/bootstrap/css/bootstrap.min.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/bootstrap/css/dropdowns-enhancement.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/bootstrap/css/dropdowns-enhancement.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/talaria/dist/talaria.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/talaria/dist/talaria.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/createjs/createjs.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/createjs/createjs.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/font-awesome/css/font-awesome.min.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/font-awesome/css/font-awesome.min.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/icomoon/css/icomoon.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/icomoon/css/icomoon.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/cal-heatmap/cal-heatmap.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}bower_components/cal-heatmap/cal-heatmap.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/mobile.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/mobile.css" />
|
||||||
</head>
|
</head>
|
@ -11,15 +11,12 @@
|
|||||||
<ul class="nav navbar-nav navbar-right">
|
<ul class="nav navbar-nav navbar-right">
|
||||||
{{ partial "navbar-menu" . }}
|
{{ partial "navbar-menu" . }}
|
||||||
{{ partial "navbar-icon" . }}
|
{{ partial "navbar-icon" . }}
|
||||||
<!--
|
|
||||||
{{ partial "navbar-search" . }}
|
|
||||||
-->
|
|
||||||
</ul>
|
</ul>
|
||||||
</div><!-- /.navbar-collapse -->
|
</div>
|
||||||
|
|
||||||
</div><!-- /.container-fluid -->
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</header>
|
</header>
|
@ -17,4 +17,4 @@
|
|||||||
<a href="https://twitter.com/paulbsd">
|
<a href="https://twitter.com/paulbsd">
|
||||||
<i class="fa fa-twitter" aria-hidden="true"></i>
|
<i class="fa fa-twitter" aria-hidden="true"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
@ -1,7 +1,7 @@
|
|||||||
<li><a href="/">Home</a></li>
|
<li><a href="/">Home</a></li>
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
|
||||||
aria-expanded="false">PaulBSD Applications<span class="caret"></span></a>
|
aria-expanded="false">PaulBSD Applications<span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a target="_blank" rel="noopener noreferrer" href="https://mail.paulbsd.com">PMail</a></li>
|
<li><a target="_blank" rel="noopener noreferrer" href="https://mail.paulbsd.com">PMail</a></li>
|
||||||
<li role="separator" class="divider"></li>
|
<li role="separator" class="divider"></li>
|
||||||
@ -11,4 +11,4 @@
|
|||||||
<li><a target="_blank" rel="noopener noreferrer" href="https://netbox.paulbsd.com">PIPAM</a></li>
|
<li><a target="_blank" rel="noopener noreferrer" href="https://netbox.paulbsd.com">PIPAM</a></li>
|
||||||
<li><a target="_blank" rel="noopener noreferrer" href="https://ip.paulbsd.com">PaulBSD IP Service</a></li>
|
<li><a target="_blank" rel="noopener noreferrer" href="https://ip.paulbsd.com">PaulBSD IP Service</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
@ -4,4 +4,4 @@
|
|||||||
<input type="text" class="form-control" placeholder="" name="q">
|
<input type="text" class="form-control" placeholder="" name="q">
|
||||||
</div>
|
</div>
|
||||||
<button type="submit" class="btn btn-default"><i class="fa fa-search"></i></button>
|
<button type="submit" class="btn btn-default"><i class="fa fa-search"></i></button>
|
||||||
</form>
|
</form>
|
@ -76,7 +76,7 @@
|
|||||||
|
|
||||||
{{ with .Site.Social.stackoverflow }}
|
{{ with .Site.Social.stackoverflow }}
|
||||||
<td><a href="//stackoverflow.com/users/{{.}}" target="_blank" title="Stackoverflow"><i
|
<td><a href="//stackoverflow.com/users/{{.}}" target="_blank" title="Stackoverflow"><i
|
||||||
class="fa fa-stackoverflow"></i></a></td>
|
class="fa fa-stackoverflow"></i></a></td>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ with .Site.Social.reddit }}
|
{{ with .Site.Social.reddit }}
|
||||||
@ -97,4 +97,4 @@
|
|||||||
|
|
||||||
{{ with .Site.Social.twitter }}
|
{{ with .Site.Social.twitter }}
|
||||||
<td><a href="//twitter.com/{{.}}" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a></td>
|
<td><a href="//twitter.com/{{.}}" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a></td>
|
||||||
{{ end }}
|
{{ end }}
|
@ -1,6 +1,6 @@
|
|||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
|
||||||
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
|
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
|
||||||
<span class="sr-only">Toggle navigation</span>
|
<span class="sr-only">Toggle navigation</span>
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
@ -11,4 +11,4 @@
|
|||||||
<span id="title">PaulBSD</span>
|
<span id="title">PaulBSD</span>
|
||||||
</a>
|
</a>
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
@ -2,7 +2,6 @@
|
|||||||
<div class="widget">
|
<div class="widget">
|
||||||
<h3 class="widget-title">
|
<h3 class="widget-title">
|
||||||
Docs
|
Docs
|
||||||
<!--{{with .Site.Data.l10n.widgets.documentation.title}}{{.}}{{end}} -->
|
|
||||||
</h3>
|
</h3>
|
||||||
<ul class="category-list">
|
<ul class="category-list">
|
||||||
<li class="category-list-item">
|
<li class="category-list-item">
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div class="widget-download">
|
<div class="widget-download">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true"
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true"
|
||||||
aria-expanded="false">
|
aria-expanded="false">
|
||||||
<i class="fa fa-question-circle"></i> Help <span class="caret"></span>
|
<i class="fa fa-question-circle"></i> Help <span class="caret"></span>
|
||||||
</button>
|
</button>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
@ -16,8 +16,8 @@
|
|||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<a href="https://gitlab.com/syui">
|
<a href="https://gitlab.com/syui">
|
||||||
<button type="button" class="btn btn-default" aria-haspopup="true" aria-expanded="false"><i class="fa fa-gitlab"
|
<button type="button" class="btn btn-default" aria-haspopup="true" aria-expanded="false"><i class="fa fa-gitlab"
|
||||||
aria-hidden="true"></i> GitLab</button>
|
aria-hidden="true"></i> GitLab</button>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -8,11 +8,11 @@
|
|||||||
Posts
|
Posts
|
||||||
</h3>
|
</h3>
|
||||||
</a></li>
|
</a></li>
|
||||||
{{ range first 10 (where .Site.RegularPages "Type" "post") }}
|
{{ range first 10 (where .Site.RegularPages "Type" "post") }}
|
||||||
|
|
||||||
<li><a href="{{ .Permalink }}" class="move"> {{ .Title }}</a> </li>
|
<li><a href="{{ .Permalink }}" class="move"> {{ .Title }}</a> </li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
@ -4,8 +4,6 @@
|
|||||||
<ul class="category-list">
|
<ul class="category-list">
|
||||||
<h3 class="widget-title">Tags {{with .Site.Data.l10n.widgets.tag_cloud.title}}{{.}}{{end}} </h3>
|
<h3 class="widget-title">Tags {{with .Site.Data.l10n.widgets.tag_cloud.title}}{{.}}{{end}} </h3>
|
||||||
<div class="widget tagcloud">
|
<div class="widget tagcloud">
|
||||||
|
|
||||||
|
|
||||||
{{ range $name, $items := .Site.Taxonomies.tags }}
|
{{ range $name, $items := .Site.Taxonomies.tags }}
|
||||||
<a href="{{ $.Site.BaseURL }}tags/{{ $name | urlize | lower }}" style="font-size: 12px;">{{ $name }}</a>
|
<a href="{{ $.Site.BaseURL }}tags/{{ $name | urlize | lower }}" style="font-size: 12px;">{{ $name }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<div class="widget-wrap">
|
<div class="widget-wrap">
|
||||||
<div class="widget">
|
<div class="widget">
|
||||||
<h3 class="widget-title">Recent Updates</h3>
|
<h3 class="widget-title">Recent Updates</h3>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
@ -22,7 +21,7 @@
|
|||||||
<td class="pkg-name"><span class="extra">rp-pppoe 3.12-1</span></td>
|
<td class="pkg-name"><span class="extra">rp-pppoe 3.12-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/extra/i686/rp-pppoe/" title="Details for rp-pppoe [extra]">i686</a>/<a
|
<a href="/packages/extra/i686/rp-pppoe/" title="Details for rp-pppoe [extra]">i686</a>/<a
|
||||||
href="/packages/extra/x86_64/rp-pppoe/" title="Details for rp-pppoe [extra]">x86_64</a>
|
href="/packages/extra/x86_64/rp-pppoe/" title="Details for rp-pppoe [extra]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -30,7 +29,7 @@
|
|||||||
<td class="pkg-name"><span class="extra">gsound 1.0.2-1</span></td>
|
<td class="pkg-name"><span class="extra">gsound 1.0.2-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/extra/i686/gsound/" title="Details for gsound [extra]">i686</a>/<a
|
<a href="/packages/extra/i686/gsound/" title="Details for gsound [extra]">i686</a>/<a
|
||||||
href="/packages/extra/x86_64/gsound/" title="Details for gsound [extra]">x86_64</a>
|
href="/packages/extra/x86_64/gsound/" title="Details for gsound [extra]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -38,7 +37,7 @@
|
|||||||
<td class="pkg-name"><span class="community">go-ipfs 0.3.11-1</span></td>
|
<td class="pkg-name"><span class="community">go-ipfs 0.3.11-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/community/i686/go-ipfs/" title="Details for go-ipfs [community]">i686</a>/<a
|
<a href="/packages/community/i686/go-ipfs/" title="Details for go-ipfs [community]">i686</a>/<a
|
||||||
href="/packages/community/x86_64/go-ipfs/" title="Details for go-ipfs [community]">x86_64</a>
|
href="/packages/community/x86_64/go-ipfs/" title="Details for go-ipfs [community]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -60,7 +59,7 @@
|
|||||||
<td class="pkg-name"><span class="community">gpsbabel 1.5.3-1</span></td>
|
<td class="pkg-name"><span class="community">gpsbabel 1.5.3-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/community/i686/gpsbabel/" title="Details for gpsbabel [community]">i686</a>/<a
|
<a href="/packages/community/i686/gpsbabel/" title="Details for gpsbabel [community]">i686</a>/<a
|
||||||
href="/packages/community/x86_64/gpsbabel/" title="Details for gpsbabel [community]">x86_64</a>
|
href="/packages/community/x86_64/gpsbabel/" title="Details for gpsbabel [community]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -68,7 +67,7 @@
|
|||||||
<td class="pkg-name"><span class="extra">marble 15.12.1-2</span></td>
|
<td class="pkg-name"><span class="extra">marble 15.12.1-2</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/extra/i686/marble/" title="Details for marble [extra]">i686</a>/<a
|
<a href="/packages/extra/i686/marble/" title="Details for marble [extra]">i686</a>/<a
|
||||||
href="/packages/extra/x86_64/marble/" title="Details for marble [extra]">x86_64</a>
|
href="/packages/extra/x86_64/marble/" title="Details for marble [extra]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -76,7 +75,7 @@
|
|||||||
<td class="pkg-name"><span class="extra">kdepimlibs 15.12.1-1</span></td>
|
<td class="pkg-name"><span class="extra">kdepimlibs 15.12.1-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/extra/i686/kdepimlibs/" title="Details for kdepimlibs [extra]">i686</a>/<a
|
<a href="/packages/extra/i686/kdepimlibs/" title="Details for kdepimlibs [extra]">i686</a>/<a
|
||||||
href="/packages/extra/x86_64/kdepimlibs/" title="Details for kdepimlibs [extra]">x86_64</a>
|
href="/packages/extra/x86_64/kdepimlibs/" title="Details for kdepimlibs [extra]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -84,7 +83,7 @@
|
|||||||
<td class="pkg-name"><span class="extra">libkdcraw 15.12.1-1</span></td>
|
<td class="pkg-name"><span class="extra">libkdcraw 15.12.1-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/extra/i686/libkdcraw/" title="Details for libkdcraw [extra]">i686</a>/<a
|
<a href="/packages/extra/i686/libkdcraw/" title="Details for libkdcraw [extra]">i686</a>/<a
|
||||||
href="/packages/extra/x86_64/libkdcraw/" title="Details for libkdcraw [extra]">x86_64</a>
|
href="/packages/extra/x86_64/libkdcraw/" title="Details for libkdcraw [extra]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -92,7 +91,7 @@
|
|||||||
<td class="pkg-name"><span class="extra">dolphin-plugins 15.12.1-1</span></td>
|
<td class="pkg-name"><span class="extra">dolphin-plugins 15.12.1-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/extra/i686/dolphin-plugins/" title="Details for dolphin-plugins [extra]">i686</a>/<a
|
<a href="/packages/extra/i686/dolphin-plugins/" title="Details for dolphin-plugins [extra]">i686</a>/<a
|
||||||
href="/packages/extra/x86_64/dolphin-plugins/" title="Details for dolphin-plugins [extra]">x86_64</a>
|
href="/packages/extra/x86_64/dolphin-plugins/" title="Details for dolphin-plugins [extra]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -100,7 +99,7 @@
|
|||||||
<td class="pkg-name"><span class="extra">bomber 15.12.1-1</span></td>
|
<td class="pkg-name"><span class="extra">bomber 15.12.1-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/extra/i686/bomber/" title="Details for bomber [extra]">i686</a>/<a
|
<a href="/packages/extra/i686/bomber/" title="Details for bomber [extra]">i686</a>/<a
|
||||||
href="/packages/extra/x86_64/bomber/" title="Details for bomber [extra]">x86_64</a>
|
href="/packages/extra/x86_64/bomber/" title="Details for bomber [extra]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -108,9 +107,9 @@
|
|||||||
<td class="pkg-name"><span class="extra">kross-interpreters 15.12.1-1</span></td>
|
<td class="pkg-name"><span class="extra">kross-interpreters 15.12.1-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/extra/i686/kross-interpreters/"
|
<a href="/packages/extra/i686/kross-interpreters/"
|
||||||
title="Details for kross-interpreters [extra]">i686</a>/<a
|
title="Details for kross-interpreters [extra]">i686</a>/<a
|
||||||
href="/packages/extra/x86_64/kross-interpreters/"
|
href="/packages/extra/x86_64/kross-interpreters/"
|
||||||
title="Details for kross-interpreters [extra]">x86_64</a>
|
title="Details for kross-interpreters [extra]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@ -118,11 +117,11 @@
|
|||||||
<td class="pkg-name"><span class="extra">kmplot 15.12.1-1</span></td>
|
<td class="pkg-name"><span class="extra">kmplot 15.12.1-1</span></td>
|
||||||
<td class="pkg-arch">
|
<td class="pkg-arch">
|
||||||
<a href="/packages/extra/i686/kmplot/" title="Details for kmplot [extra]">i686</a>/<a
|
<a href="/packages/extra/i686/kmplot/" title="Details for kmplot [extra]">i686</a>/<a
|
||||||
href="/packages/extra/x86_64/kmplot/" title="Details for kmplot [extra]">x86_64</a>
|
href="/packages/extra/x86_64/kmplot/" title="Details for kmplot [extra]">x86_64</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -1,6 +1,6 @@
|
|||||||
@media screen and (min-width: 1300px) {
|
@media screen and (min-width: 1300px) {
|
||||||
#footer-center {
|
#footer-center {
|
||||||
left: 50% !important;
|
left: 50% !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -8,27 +8,33 @@
|
|||||||
#sidebar {
|
#sidebar {
|
||||||
display: inline;
|
display: inline;
|
||||||
float: left;
|
float: left;
|
||||||
width: auto !important;
|
width: auto !important;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main {
|
#main {
|
||||||
display: inline;
|
display: inline;
|
||||||
float: left;
|
float: left;
|
||||||
width: 60%;
|
width: 60%;
|
||||||
margin: 0 0.7692307692308%;
|
margin: 0 0.7692307692308%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-nav-mobile {
|
#main-nav-mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sub-nav {
|
#sub-nav {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#profile {
|
#profile {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
#article-nav {
|
#article-nav {
|
||||||
margin: 40px 0;
|
margin: 40px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#article-nav:before {
|
#article-nav:before {
|
||||||
width: 8px;
|
width: 8px;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
@ -40,15 +46,18 @@
|
|||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background: #787c81;
|
background: #787c81;
|
||||||
}
|
}
|
||||||
|
|
||||||
.article-nav-link-wrap {
|
.article-nav-link-wrap {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#article-nav-newer {
|
#article-nav-newer {
|
||||||
float: left;
|
float: left;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#article-nav-older {
|
#article-nav-older {
|
||||||
float: right;
|
float: right;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@ -57,20 +66,24 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1100px) {
|
@media screen and (max-width: 1100px) {
|
||||||
#footer-right{
|
#footer-right {
|
||||||
display:none;
|
display: none;
|
||||||
}
|
}
|
||||||
#footer-left{
|
|
||||||
display:none;
|
#footer-left {
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
#container > .outer{
|
|
||||||
width:auto;
|
#container>.outer {
|
||||||
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer .outer {
|
#footer .outer {
|
||||||
width:auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container-fluid {
|
.container-fluid {
|
||||||
width:auto;
|
width: auto;
|
||||||
padding-top: 7px;
|
padding-top: 7px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -79,10 +92,12 @@
|
|||||||
header .outer {
|
header .outer {
|
||||||
border-bottom: solid 0px #428bca;
|
border-bottom: solid 0px #428bca;
|
||||||
}
|
}
|
||||||
#header a, #header a:visited {
|
|
||||||
color: #fff;
|
#header a,
|
||||||
position: relative;
|
#header a:visited {
|
||||||
margin-bottom: 4px;
|
color: #fff;
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -90,17 +105,20 @@
|
|||||||
#sidebar {
|
#sidebar {
|
||||||
display: inline;
|
display: inline;
|
||||||
float: left;
|
float: left;
|
||||||
width: auto !important;
|
width: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main {
|
#main {
|
||||||
display: inline;
|
display: inline;
|
||||||
float: left;
|
float: left;
|
||||||
width: 67.6923076923077%;
|
width: 67.6923076923077%;
|
||||||
margin: 0 0.7692307692308%;
|
margin: 0 0.7692307692308%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
width: auto !important;
|
width: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-nav-mobile {
|
#main-nav-mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -113,9 +131,11 @@
|
|||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
line-height: 54px;
|
line-height: 54px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header-sub {
|
#header-sub {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-nav {
|
#main-nav {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -132,24 +152,30 @@
|
|||||||
.widget-wrap {
|
.widget-wrap {
|
||||||
margin: 40px 20px;
|
margin: 40px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#toTop {
|
#toTop {
|
||||||
width: 54px;
|
width: 54px;
|
||||||
height: 54px;
|
height: 54px;
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
line-height: 54px;
|
line-height: 54px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.outer {
|
.outer {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header-sub {
|
#header-sub {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-nav {
|
#main-nav {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-nav-mobile .menu .search-form-input {
|
#main-nav-mobile .menu .search-form-input {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-year-wrap,
|
.archive-year-wrap,
|
||||||
.archive-category-wrap,
|
.archive-category-wrap,
|
||||||
.archive-tag-wrap,
|
.archive-tag-wrap,
|
||||||
@ -157,13 +183,16 @@
|
|||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-wrap-inner {
|
.layout-wrap-inner {
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-article-thumbnail .thumbnail {
|
.archive-article-thumbnail .thumbnail {
|
||||||
width: 120px;
|
width: 120px;
|
||||||
height: 67.5px;
|
height: 67.5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-article-title {
|
.archive-article-title {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
@ -171,6 +200,7 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-nav .page-number {
|
#page-nav .page-number {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -180,4 +210,4 @@
|
|||||||
#sub-nav {
|
#sub-nav {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
@ -14,4 +14,4 @@ min_version = 0.15
|
|||||||
[original]
|
[original]
|
||||||
author = "syui"
|
author = "syui"
|
||||||
homepage = "https://syui.github.io"
|
homepage = "https://syui.github.io"
|
||||||
repo = "https://github.com/syui/hugo-theme-arch"
|
repo = "https://github.com/syui/hugo-theme-arch"
|
@ -4,10 +4,10 @@ build:
|
|||||||
- arjen/hugo-build:
|
- arjen/hugo-build:
|
||||||
version: "0.15"
|
version: "0.15"
|
||||||
theme: hugo-theme-arch
|
theme: hugo-theme-arch
|
||||||
flags: --buildDrafts=true
|
flags: --buildDrafts=true
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
steps:
|
steps:
|
||||||
- lukevivier/gh-pages@0.2.1:
|
- lukevivier/gh-pages@0.2.1:
|
||||||
token: $GIT_TOKEN
|
token: $GIT_TOKEN
|
||||||
basedir: public
|
basedir: public
|
Loading…
Reference in New Issue
Block a user