Skip to content

Commit daf3611

Browse files
committed
Support page description variable usage
1 parent c86bb6c commit daf3611

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ To use images in scss you can simply do it as you did before. E.g.:
8181

8282
E-mail: [nikita.mihalyov@gmail.com](mailto:nikita.mihalyov@gmail.com)
8383

84-
Teleegram: [@nmihalyov](http://t.me/nmihalyov)
84+
LinkedIn: [nmihalyov](https://linkedin.com/in/nmihalyov)
85+
86+
Telegram: [@nmihalyov](https://t.me/nmihalyov)
8587

8688
Website: [nmihalyov.tk](https://nmihalyov.tk)
8789

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pure-start",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Start your project with 'Pure Start' easily then ever!",
55
"private": "true",
66
"scripts": {

src/assets/images/favicons/.gitkeep

Whitespace-only changes.

src/pug/layouts/main.pug

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ doctype html
88
html(lang='en')
99
head
1010
title #{title}
11+
meta(name="description", content=description)
1112
include ../utils/metas
1213
include ../utils/links
1314

src/pug/pages/index.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ block content
1414
section.container
1515
.wrapper
1616
h1(style="margin: 35px 0") Pure Start
17-
sup(style="font-size: 12px") v2.0.1
17+
sup(style="font-size: 12px") v2.0.2
1818
h3(style="margin-bottom: 25px") Components examples
1919

2020
h4(style="margin-bottom: 10px") 1. Buttons

src/pug/utils/metas.pug

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ meta(charset="UTF-8")
1212
//- viewport tag
1313
meta(name="viewport", content="width=device-width, initial-scale=1, user-scalable=no")
1414

15-
//- short page description
16-
meta(name="description", content="Page description")
17-
1815
//- key words
1916
meta(name="keywords", content="page, keywords")
2017

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Pure Start © 2017 – 2022, Nikita Mihalyov <nikita.mihalyov@gmail.com>
33
* ISC Licensed
4-
* v2.0.1
4+
* v2
55
*/
66

77
const path = require('path');

0 commit comments

Comments
 (0)