-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added vscode settings + edited layout to include date + small t…
…ext tweaks
- Loading branch information
1 parent
b1abffa
commit 1388274
Showing
11 changed files
with
151 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
.DS_Store | ||
|
||
/.quarto/ | ||
.vscode/ | ||
*.DS_Store/ | ||
.luarc.json | ||
.hugo_build.lock | ||
hugo_build.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"defaultTheme": "lines" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
MISMaP | ||
metascience | ||
Borek |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{"rule":"PASSIVE_VOICE","sentence":"^\\Qbut I the line numbers section were two lines short than the code section (the code section was customized by the theme \\E(?:Dummy|Ina|Jimmy-)[0-9]+\\Q).\\E$"} | ||
{"rule":"PASSIVE_VOICE","sentence":"^\\Qbut the line numbers section were two lines short than the code section (the code section was customized by the theme \\E(?:Dummy|Ina|Jimmy-)[0-9]+\\Q).\\E$"} | ||
{"rule":"OXFORD_SPELLING_Z_NOT_S","sentence":"^\\QBefore starting PhD, I worked as a data analyst in the area of health policy, doing data analysis, data visualisation and report automation in R. I am passionate about health data and using data visualisation to provide new insights.\\E$"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/Thumbs.db": true, | ||
".git": true | ||
}, | ||
"explorerExclude.backup": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
{{ partial "head.html" . }} | ||
<body> | ||
<main> | ||
{{ partial "header.html" . }} | ||
<section> | ||
|
||
{{ if eq .Type "posts" }} | ||
<h2 itemprop="name headline">{{ .Title }}</h2> | ||
{{ $lastmod := .Lastmod.Format "02.01.2006" }} | ||
|
||
<p class="meta"> | ||
|
||
<time itemprop="datePublished" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat " January 02, 2006" .Date }}</time> • | ||
{{ partial "tags.html" .}} | ||
<br> Edited on: {{ $lastmod }} | ||
</p> | ||
|
||
|
||
{{ end }} | ||
|
||
<span itemprop="articleBody"> | ||
{{ .Content }} | ||
</span> | ||
|
||
|
||
</section> | ||
{{ partial "footer.html" . }} | ||
</main> | ||
</body> | ||
</html> |