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;
|
||||
$white: #fdfdfd;
|
||||
$black: #2f2f2f;
|
||||
|
|
|
@ -51,8 +51,7 @@ function compilePost(filepath, data, fileData, callback) {
|
|||
published: published.format('MMMM DD, YYYY'),
|
||||
filename: metadata.filename,
|
||||
title: frontMatter.attributes.title,
|
||||
summary: frontMatter.attributes.summary,
|
||||
link: config.baseURL + '/post/' + metadata.filename
|
||||
link: '/post/' + metadata.filename
|
||||
};
|
||||
|
||||
const renderedpath = path.join(process.cwd(), config.renderPath, `${metadata.filename}.html`);
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
{
|
||||
"baseURL": "",
|
||||
"title": "Matúš Námešný",
|
||||
"coverimage": "",
|
||||
"avatar": "https://pbs.twimg.com/profile_images/512708501840228352/MbawoT5E.jpeg",
|
||||
"description": "Hello",
|
||||
"name": "Matúš Námešný",
|
||||
"email": "matus@namesny.com",
|
||||
"social": {
|
||||
|
|
|
@ -26,7 +26,7 @@ function renderFullPage(html) {
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Matúš Námešný</title>
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
|
|
Loading…
Reference in New Issue