Major development update.
* Updated LICENSE, READMES/METADATA.md and TODO.md * Added example blog to examples/ * Added preliminary Pygments support for embedding code in pages. * Add preliminary Wordpress dump importer * Expansions to template_tools and metadata to support Blog use case.
This commit is contained in:
@ -1,3 +1,277 @@
|
||||
@font-face {
|
||||
font-family: 'Expletus Sans';
|
||||
src: url('fonts/ExpletusSans-Bold.woff2') format('woff2'),
|
||||
url('fonts/ExpletusSans-Bold.woff') format('woff');
|
||||
font-style: regular;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
|
||||
body { margin: 10% 10% 0 10% }
|
||||
@font-face {
|
||||
font-family: 'Expletus Sans';
|
||||
src: url('fonts/ExpletusSans-BoldItalic.woff2') format('woff2'),
|
||||
url('fonts/ExpletusSans-BoldItalic.woff') format('woff');
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Expletus Sans';
|
||||
src: url('fonts/ExpletusSans-Italic.woff2') format('woff2'),
|
||||
url('fonts/ExpletusSans-Italic.woff') format('woff');
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Expletus Sans';
|
||||
src: url('fonts/ExpletusSans-Medium.woff2') format('woff2'),
|
||||
url('fonts/ExpletusSans-Medium.woff') format('woff');
|
||||
font-style: regular;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Expletus Sans';
|
||||
src: url('fonts/ExpletusSans-MediumItalic.woff2') format('woff2'),
|
||||
url('fonts/ExpletusSans-MediumItalic.woff') format('woff');
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Expletus Sans';
|
||||
src: url('fonts/ExpletusSans-Regular.woff2') format('woff2'),
|
||||
url('fonts/ExpletusSans-Regular.woff') format('woff');
|
||||
font-style: regular;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Expletus Sans';
|
||||
src: url('fonts/ExpletusSans-SemiBold.woff2') format('woff2'),
|
||||
url('fonts/ExpletusSans-SemiBold.woff') format('woff');
|
||||
font-style: regular;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Expletus Sans';
|
||||
src: url('fonts/ExpletusSans-SemiBoldItalic.woff2') format('woff2'),
|
||||
url('fonts/ExpletusSans-SemiBoldItalic.woff') format('woff');
|
||||
font-style: italic;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Teko';
|
||||
src: url('fonts/Teko-Bold.woff2') format('woff2'),
|
||||
url('fonts/Teko-Bold.woff') format('woff');
|
||||
font-style: regular;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Teko Light';
|
||||
src: url('fonts/Teko-Light.woff2') format('woff2'),
|
||||
url('fonts/Teko-Light.woff') format('woff');
|
||||
font-style: regular;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Teko Medium';
|
||||
src: url('fonts/Teko-Medium.woff2') format('woff2'),
|
||||
url('fonts/Teko-Medium.woff') format('woff');
|
||||
font-style: regular;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Teko';
|
||||
src: url('fonts/Teko-Regular.woff2') format('woff2'),
|
||||
url('fonts/Teko-Regular.woff') format('woff');
|
||||
font-style: regular;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: 'Teko SemiBold';
|
||||
src: url('fonts/Teko-SemiBold.woff2') format('woff2'),
|
||||
url('fonts/Teko-SemiBold.woff') format('woff');
|
||||
font-style: regular;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
body { margin: 0; font-family: Teko; font-size: 24pt; }
|
||||
h1, h2, h3, h4 { font-family: 'Expletus Sans'; font-weight: 700 }
|
||||
h1 { font-size: 150%; border-bottom: solid 1px black; }
|
||||
h2 { font-size: 125%; }
|
||||
h3 { font-size: 115%; }
|
||||
h4 { font-size: 100%; }
|
||||
|
||||
.container {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: 220px auto auto;
|
||||
grid-template-rows: auto auto auto auto;
|
||||
}
|
||||
|
||||
header {
|
||||
border: 0;
|
||||
padding-left: 20px;
|
||||
height: 60px;
|
||||
grid-column: 1 / 4;
|
||||
background: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
header h1 { font-size: 18pt; border: none}
|
||||
|
||||
nav {
|
||||
grid-row: 2 / 5;
|
||||
grid-column: 1;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
nav ul li {
|
||||
list-style-type: none;
|
||||
padding: 1px 20px 1px 20px;
|
||||
}
|
||||
|
||||
nav ul li:hover {
|
||||
background: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
nav ul li:hover img {
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
nav ul li a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
nav ul li:hover a:hover {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
nav ul li a:visited {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
article {
|
||||
grid-row: 2 / 5;
|
||||
grid-column: 2 / 4;
|
||||
margin: 0 20px 0 20px;
|
||||
}
|
||||
|
||||
footer {
|
||||
font-size: 12pt;
|
||||
grid-column: 1 / 4;
|
||||
grid-row: 5;
|
||||
background: black;
|
||||
color: white;
|
||||
padding-top: 10px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.post div.featured {
|
||||
max-height: 250px;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.post div.featured img.featured {
|
||||
max-width: initial;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.post div.featured h1 {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
left: 0;
|
||||
color: white;
|
||||
border: 0;
|
||||
padding: 10px 30px 10px 30px;
|
||||
background: rgba(0,0,0,0.5);
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
font-variant: small-caps;
|
||||
}
|
||||
|
||||
.post div.byline {
|
||||
margin-left: 30px;
|
||||
font-size: 0.75em;
|
||||
line-height: 0.75em;
|
||||
}
|
||||
|
||||
.post div.article {
|
||||
margin-left: 30Px;
|
||||
}
|
||||
|
||||
.post div.article p {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.postgrid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(300px, 33%) minmax(300px, 33%) minmax(300px, 33%);
|
||||
margin-bottom: 30px;
|
||||
column-gap: 10px;
|
||||
row-gap: 10px;
|
||||
}
|
||||
|
||||
.postgrid-item {
|
||||
height: 200px;
|
||||
max-height: 200px;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.postgrid-item a img.featured {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.postgrid-item a div {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
color: white;
|
||||
border: 0;
|
||||
padding: 10px 30px 10px 30px;
|
||||
background: rgba(0,0,0,0.5);
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
font-variant: small-caps;
|
||||
}
|
||||
|
||||
{{ pygments_get_css('emacs') }}
|
||||
|
||||
div.code {
|
||||
font-size: 0.5em;
|
||||
border: 1px black solid;
|
||||
padding: 1em;
|
||||
margin: 0 1em 0 1em;
|
||||
}
|
||||
|
Reference in New Issue
Block a user