1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-16 21:54:06 +02:00

print CSS

This commit is contained in:
Pomax
2017-04-15 13:32:44 -07:00
parent 9b91c9fc2b
commit 30ca488d4a
16 changed files with 173 additions and 88 deletions

View File

@@ -3,12 +3,19 @@ var React = require('react');
var Footer = React.createClass({
render: function() {
var copyright = "© 2011-2017";
return (
<footer className="copyright">
This article is © 2011-2016 to me, Mike "Pomax" Kamermans, but the text, code,
and images are <a href="https://github.com/Pomax/bezierinfo/blob/gh-pages/LICENSE.md">almost
no rights reserved</a>. Go do something cool with it!
</footer>
<div>
<footer className="copyright">
This article is {copyright} to me, Mike "Pomax" Kamermans, but the text, code,
and images are <a href="https://github.com/Pomax/bezierinfo/blob/gh-pages/LICENSE.md">almost
no rights reserved</a>. Go do something cool with it!
</footer>
<footer className="print copyright">
Content printed from https://pomax.github.io/bezierinfo, {copyright} Mike "Pomax" Kamermans.
</footer>
</div>
);
}