Skip to content

Commit ae6504b

Browse files
author
Ned Zimmerman
committed
Initial commit.
0 parents  commit ae6504b

21 files changed

+2168
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Donham
2+
3+
This theme is named after Wallace Donham, Dean of Harvard Business School from 1919 to 1942. The Donham theme is a light, modern theme, equally effective for non-fiction and fiction. Body font is Tinos, and Header font is Galdeano. An earlier version of this theme was commissioned by Harvard Business Review Press.

_fonts-epub.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@import '_font-stack-epub'; // Dynamically generated
2+
3+
$serif-epub: serif !default;
4+
5+
$font-1: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, Times, $serif-epub;
6+

_fonts-prince.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@import '_font-stack-prince'; // Dynamically generated
2+
3+
$serif-prince: serif !default;
4+
$sans-serif-prince: sans-serif !default;
5+
6+
$font-1: "Linux Libertine", $serif-prince;
7+
$font-2: "Linux Biolinum", $sans-serif-prince;
8+
9+
@import 'LinuxBiolinum';
10+
@import 'LinuxLibertine';

_fonts-web.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@import '_font-stack-web'; // Dynamically generated
2+
3+
$serif-web: serif !default;
4+
$sans-serif-web: sans-serif !default;
5+
6+
$font-1: "Tinos", $serif-web;
7+
$font-2: "Galdeano", $sans-serif-web;
8+
9+
@import url("https://fonts.googleapis.com/css?family=Galdeano|Tinos:400,400italic,700,700italic");

_mixins.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
Theme Name: Donham
3+
Theme URI: http://pressbooks.com/themes/donham/
4+
Description: This theme is named after Wallace Donham, Dean of Harvard Business School from 1919 to 1942. The Donham theme is a light, modern theme, equally effective for non-fiction and fiction. Body font is Tinos, and Header font is Galdeano. An earlier version of this theme was commissioned by Harvard Business Review Press.
5+
Author: Pressbooks (Book Oven Inc.)
6+
Author URI: http://pressbooks.com
7+
Copyright 2011-2017 Book Oven Inc. (Pressbooks.com) [email protected]
8+
Version: 1.6
9+
Template: pressbooks-book
10+
*/

composer.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "pressbooks/pressbooks-donham",
3+
"description": "This theme is named after Wallace Donham, Dean of Harvard Business School from 1919 to 1942. The Donham theme is a light, modern theme, equally effective for non-fiction and fiction. Body font is Tinos, and Header font is Galdeano. An earlier version of this theme was commissioned by Harvard Business Review Press.",
4+
"type": "wordpress-theme",
5+
"require": {
6+
"composer/installers": "^1.2"
7+
},
8+
"require-dev": {
9+
"humanmade/coding-standards": "^0.2.1"
10+
},
11+
"license": "GPL-2.0+",
12+
"authors": [
13+
{
14+
"name": "Pressbooks (Book Oven Inc.)",
15+
"email": "[email protected]"
16+
}
17+
]
18+
}

composer.lock

Lines changed: 315 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

export/epub/images/asterisk.png

126 Bytes
Loading

export/epub/images/em-dash.png

75 Bytes
Loading

0 commit comments

Comments
 (0)