mirror of
https://github.com/wassname/template.git
synced 2026-07-01 11:11:01 +08:00
87 lines
2.2 KiB
JavaScript
87 lines
2.2 KiB
JavaScript
// Copyright 2018 The Distill Template Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
import logo from "./distill-logo.svg";
|
|
|
|
let html = `
|
|
<style>
|
|
dt-footer {
|
|
display: block;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
font-weight: 300;
|
|
padding: 40px 0;
|
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
background-color: hsl(200, 60%, 15%);
|
|
text-align: center;
|
|
}
|
|
dt-footer .logo svg {
|
|
width: 24px;
|
|
position: relative;
|
|
top: 4px;
|
|
margin-right: 2px;
|
|
}
|
|
dt-footer .logo svg path {
|
|
fill: none;
|
|
stroke: rgba(255, 255, 255, 0.8);
|
|
stroke-width: 3px;
|
|
}
|
|
dt-footer .logo {
|
|
font-size: 17px;
|
|
font-weight: 200;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
text-decoration: none;
|
|
margin-right: 6px;
|
|
}
|
|
dt-footer .nav {
|
|
margin-top: 12px;
|
|
}
|
|
dt-footer .nav a {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
margin-right: 6px;
|
|
}
|
|
</style>
|
|
|
|
<div class="l-page">
|
|
<div class="description">
|
|
<a href="/" class="logo">
|
|
${logo}
|
|
Distill
|
|
</a>
|
|
is dedicated to clear explanations of machine learning
|
|
</div>
|
|
<div class="nav">
|
|
<a href="http://distill.pub/about/">About</a>
|
|
<a href="http://distill.pub/journal/">Submit</a>
|
|
<a href="http://distill.pub/prize/">Prize</a>
|
|
<a href="http://distill.pub/archive/">Archive</a>
|
|
<a href="http://distill.pub/rss.xml">RSS</a>
|
|
<a href="https://github.com/distillpub">GitHub</a>
|
|
<a href="https://twitter.com/distillpub">Twitter</a>
|
|
ISSN 2476-0757
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
export default function(dom, data) {
|
|
let el = dom.querySelector("dt-footer");
|
|
if(el) {
|
|
el.innerHTML = html;
|
|
} else {
|
|
let footer = dom.createElement("dt-footer");
|
|
footer.innerHTML = html;
|
|
let b = dom.querySelector("body");
|
|
b.appendChild(footer);
|
|
}
|
|
}
|