Change fonts
This commit is contained in:
parent
60aa016d00
commit
ab8c785b61
|
@ -1,4 +1,4 @@
|
||||||
$font-header: 'Concert One', cursive;
|
$font-header: 'Open Sans Condensed', sans-serif;
|
||||||
$font-paragraph: 'Open Sans', sans-serif;
|
$font-paragraph: 'Open Sans', sans-serif;
|
||||||
$white: #fdfdfd;
|
$white: #fdfdfd;
|
||||||
$black: #2f2f2f;
|
$black: #2f2f2f;
|
||||||
|
|
|
@ -51,8 +51,7 @@ function compilePost(filepath, data, fileData, callback) {
|
||||||
published: published.format('MMMM DD, YYYY'),
|
published: published.format('MMMM DD, YYYY'),
|
||||||
filename: metadata.filename,
|
filename: metadata.filename,
|
||||||
title: frontMatter.attributes.title,
|
title: frontMatter.attributes.title,
|
||||||
summary: frontMatter.attributes.summary,
|
link: '/post/' + metadata.filename
|
||||||
link: config.baseURL + '/post/' + metadata.filename
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const renderedpath = path.join(process.cwd(), config.renderPath, `${metadata.filename}.html`);
|
const renderedpath = path.join(process.cwd(), config.renderPath, `${metadata.filename}.html`);
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
{
|
{
|
||||||
"baseURL": "",
|
|
||||||
"title": "Matúš Námešný",
|
"title": "Matúš Námešný",
|
||||||
"coverimage": "",
|
"coverimage": "",
|
||||||
"avatar": "https://pbs.twimg.com/profile_images/512708501840228352/MbawoT5E.jpeg",
|
|
||||||
"description": "Hello",
|
|
||||||
"name": "Matúš Námešný",
|
"name": "Matúš Námešný",
|
||||||
"email": "matus@namesny.com",
|
"email": "matus@namesny.com",
|
||||||
"social": {
|
"social": {
|
||||||
|
|
|
@ -26,7 +26,7 @@ function renderFullPage(html) {
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>Matúš Námešný</title>
|
<title>Matúš Námešný</title>
|
||||||
<!-- Google Fonts -->
|
<!-- Google Fonts -->
|
||||||
<link href="https://fonts.googleapis.com/css?family=Inconsolata|Open+Sans|Roboto|Montserrat|Concert+One" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Open+Sans+Condensed:700&subset=latin-ext" rel="stylesheet">
|
||||||
<!-- Font Awesome -->
|
<!-- Font Awesome -->
|
||||||
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
|
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Reference in New Issue