Change fonts

This commit is contained in:
LordMathis 2018-06-15 17:01:28 +02:00
parent 60aa016d00
commit ab8c785b61
4 changed files with 3 additions and 7 deletions

View File

@ -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;

View File

@ -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`);

View File

@ -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": {

View File

@ -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&amp;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>