initial source commit
parent
bd7ae34517
commit
6cfed3a71a
@ -0,0 +1,5 @@
|
||||
#lang pollen
|
||||
|
||||
◊(define-meta title "appendix")
|
||||
◊(chapter-from-metas metas)
|
||||
|
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript">
|
||||
|
||||
function get_query_variable(key)
|
||||
{
|
||||
var query = window.location.search.substring(1);
|
||||
var vars = query.split("&");
|
||||
for (var i=0;i<vars.length;i++) {
|
||||
var pair = vars[i].split("=");
|
||||
if(pair[0] == key){return pair[1];}
|
||||
}
|
||||
return(false);
|
||||
}
|
||||
|
||||
function finish_form_with_query_variable(key)
|
||||
{
|
||||
var query_value = get_query_variable(key);
|
||||
if (query_value != false) {
|
||||
document.getElementById('post_form_item').value = query_value;
|
||||
document.forms['post_form'].submit();
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onLoad='finish_form_with_query_variable("item")'>
|
||||
<form id="post_form" method="post" action="http://buy.mbtype.com/cart">
|
||||
<input id="post_form_item" name="cart[add][id]" type="hidden" />
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,30 @@
|
||||
#lang pollen
|
||||
|
||||
◊(define-meta title "body text")
|
||||
◊hanging-topic[(topic-from-metas metas)]{Four important considerations}
|
||||
|
||||
◊center{
|
||||
Please note:
|
||||
◊strong{BODY TEXT}
|
||||
is the most common
|
||||
element of a document.
|
||||
Therefore, how the body
|
||||
text looks will have the
|
||||
most noticeable effect
|
||||
on the appearance
|
||||
of the document.
|
||||
Consequently,
|
||||
you should
|
||||
set up the
|
||||
body text
|
||||
◊strong{FIRST}.
|
||||
|
||||
Start with
|
||||
font, ◊xref{point size},
|
||||
◊xref{line spacing}, and
|
||||
◊xref{line length}, because
|
||||
those four decisions will
|
||||
largely determine how
|
||||
the body text will
|
||||
look. OK?
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,6 @@
|
||||
ol li {
|
||||
margin-left: 2.2rem;
|
||||
}
|
||||
ol li p{
|
||||
margin-left: .3rem;
|
||||
}
|