1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-27 10:15:05 +02:00
This commit is contained in:
Pomax
2017-03-26 13:04:17 -07:00
parent 7351080804
commit c858011930
11 changed files with 126 additions and 348 deletions

View File

@@ -0,0 +1,27 @@
<script>
/* ----------------------------------------------------------------------------- *
*
* PLEASE DO NOT LOCALISE THIS FILE
*
* I can't respond to questions that aren't asked in English, so this is one of
* the few cases where there is a content.en-GB.md but you shouldn't change it.
*
* ----------------------------------------------------------------------------- */
</script>
<style>
#comments {
width: calc(960px + 2em),
marginTop: 0,
borderTop: 1px solid rgba(255, 0, 0, 0.5),
paddingTop: 3em
}
</style>
# Comments and questions
If you enjoyed this book, or you simply found it useful for something you were trying to get done, and you were wondering how to let me know you appreciated this book, you can always [buy me a coffee](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QPRDLNGDANJSW), however much a coffee is where you live. This work has grown over the years, from a small primer to a 70ish print-page-equivalent reader on the subject of Bézier curves, and a lot of coffee went into the making of it. I don't regret a minute I spent on writing it, but I can always do with some more coffee to keep on writing!
<div id="disqus_thread"/>
<script src="lib/site/disqus.js" async></script>

View File

@@ -1,43 +0,0 @@
var React = require("react");
var style = {
width: 'calc(960px + 2em)',
marginTop: 0,
borderTop: '1px solid rgba(255, 0, 0, 0.5)',
paddingTop: '3em'
};
var sectionHTML = (
<section id="comments" style={style}>
<h2>Comments and questions</h2>
<p>If you enjoyed this book, or you simply found it useful for something you were trying to
get done, and you were wondering how to let me know you appreciated this book, you can
always <a className="link" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QPRDLNGDANJSW"
>buy me a coffee</a>, however much a coffee is where you live. This work has grown over the
years, from a small primer to a 70ish print-page-equivalent reader on the subject of Bézier
curves, and a lot of coffee went into the making of it. I don't regret a minute I spent
on writing it, but I can always do with some more coffee to keep on writing!</p>
<div id="disqus_thread"/>
</section>
);
var CommentsAndQuestions = React.createClass({
getDefaultProps: function() {
return {
title: "Comments and Questions"
};
},
componentDidMount: function() {
if (typeof document !== "undefined") {
var disqusScript = document.createElement("script");
disqusScript.setAttribute("async", "async");
disqusScript.src = "lib/site/disqus.js";
document.head.appendChild(disqusScript);
}
},
render: function() { return sectionHTML; }
});
module.exports = CommentsAndQuestions;