mirror of
https://github.com/simon987/dataarchivist.net.git
synced 2025-04-19 17:16:42 +00:00
Remove powered by footer
This commit is contained in:
parent
c35fb5a79e
commit
85faecd9f9
7
jenkins/Jenkinsfile
vendored
7
jenkins/Jenkinsfile
vendored
@ -16,15 +16,17 @@ pipeline {
|
|||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
agent none
|
|
||||||
steps {
|
steps {
|
||||||
|
node('master') {
|
||||||
|
checkout scm
|
||||||
sh 'git submodule init && git submodule update --remote'
|
sh 'git submodule init && git submodule update --remote'
|
||||||
sh 'hugo && mv public/ webroot/'
|
sh 'hugo && mv public/ webroot/'
|
||||||
stash includes: 'webroot/', name: 'webdist'
|
stash includes: 'webroot/', name: 'webdist'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Deploy') {
|
stage('Deploy') {
|
||||||
agent none
|
|
||||||
steps {
|
steps {
|
||||||
node('master') {
|
node('master') {
|
||||||
unstash 'webdist'
|
unstash 'webdist'
|
||||||
@ -37,4 +39,3 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
17
layouts/partials/footer.html
Normal file
17
layouts/partials/footer.html
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
<div class="site-footer">
|
||||||
|
<div class="copyright">{{ .Site.Copyright | safeHTML }}</div>
|
||||||
|
<ul class="site-footer-items">
|
||||||
|
{{- with .OutputFormats.Get "RSS" }}
|
||||||
|
<li class="site-footer-item-rsslink">
|
||||||
|
<a href="{{ .RelPermalink }}" type="application/rss+xml" target="_blank" title="RSS">
|
||||||
|
<i class="fas fa-rss"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{{- end }}
|
||||||
|
{{- range .Site.Menus.footer }}
|
||||||
|
<li class="site-footer-item-{{ .Identifier }}"><a href="{{ .URL | safeURL }}" title="{{ .Name }}">{{ .Name }}</a></li>
|
||||||
|
{{- end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{{ template "_internal/google_analytics.html" . }}
|
Loading…
x
Reference in New Issue
Block a user