Compare commits
No commits in common. "2b4b43b22594ce13b41c2bf501e8c8e0e7a6e581" and "836136b98c03328cbdc8d049d892d11803147f08" have entirely different histories.
2b4b43b225
...
836136b98c
22
.vscode/settings.json
vendored
22
.vscode/settings.json
vendored
|
|
@ -1,22 +0,0 @@
|
||||||
{
|
|
||||||
"workbench.colorCustomizations": {
|
|
||||||
"activityBar.activeBackground": "#968349",
|
|
||||||
"activityBar.background": "#968349",
|
|
||||||
"activityBar.foreground": "#15202b",
|
|
||||||
"activityBar.inactiveForeground": "#15202b99",
|
|
||||||
"activityBarBadge.background": "#94cbbd",
|
|
||||||
"activityBarBadge.foreground": "#15202b",
|
|
||||||
"commandCenter.border": "#e7e7e799",
|
|
||||||
"sash.hoverBorder": "#968349",
|
|
||||||
"statusBar.background": "#746538",
|
|
||||||
"statusBar.foreground": "#e7e7e7",
|
|
||||||
"statusBarItem.hoverBackground": "#968349",
|
|
||||||
"statusBarItem.remoteBackground": "#746538",
|
|
||||||
"statusBarItem.remoteForeground": "#e7e7e7",
|
|
||||||
"titleBar.activeBackground": "#746538",
|
|
||||||
"titleBar.activeForeground": "#e7e7e7",
|
|
||||||
"titleBar.inactiveBackground": "#74653899",
|
|
||||||
"titleBar.inactiveForeground": "#e7e7e799"
|
|
||||||
},
|
|
||||||
"peacock.color": "#746538"
|
|
||||||
}
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
<section id="{{ subpage.data.title | slug }}" class="{{ subpage.data.classes }}">
|
|
||||||
<div class="about">
|
|
||||||
{% if subpage.data.img %}
|
|
||||||
<div>
|
|
||||||
<img src="{{subpage.data.img.src}}" alt="{{subpage.data.img.alt}}">
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
<div>
|
|
||||||
{% if subpage.data.showTitle != false %}
|
|
||||||
<h2>{{ subpage.data.title }}</h2>
|
|
||||||
{% endif %}
|
|
||||||
{{ subpage.templateContent }}
|
|
||||||
{% if subpage.data.socials %}
|
|
||||||
<strong>socials here</strong>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<section id="{{ subpage.data.title | slug }}" class="{{ subpage.data.classes }}">
|
<section id="{{ subpage.data.title | slug }}" class="{{ subpage.data.classes }}">
|
||||||
{% if subpage.data.img %}
|
{% if subpage.data.img %}
|
||||||
<img src="{{subpage.data.img.src}}" alt="{{subpage.data.img.alt}}">
|
<strong>img here</strong>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if subpage.data.showTitle != false %}
|
{% if subpage.data.showTitle != false %}
|
||||||
<h2>{{ subpage.data.title }}</h2>
|
<h2>{{ subpage.data.title }}</h2>
|
||||||
|
|
|
||||||
|
|
@ -8,14 +8,10 @@ permalink: /
|
||||||
{% if subpage.data.excludeFromList != true %}
|
{% if subpage.data.excludeFromList != true %}
|
||||||
{% if subpage.data.pageOrderId == 0 %}
|
{% if subpage.data.pageOrderId == 0 %}
|
||||||
{% include 'title.liquid' %}
|
{% include 'title.liquid' %}
|
||||||
{% else %}
|
|
||||||
{% if subpage.data.sectionType == 'about' %}
|
|
||||||
{% include 'about.liquid' %}
|
|
||||||
{% else %}
|
{% else %}
|
||||||
{% include 'page.liquid' %}
|
{% include 'page.liquid' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<!--{ % set postslist = collections.subpages % }-->
|
<!--{ % set postslist = collections.subpages % }-->
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,7 @@
|
||||||
title: About me
|
title: About me
|
||||||
pageOrderId: 1
|
pageOrderId: 1
|
||||||
classes: 'wrapper about-section'
|
classes: 'wrapper about-section'
|
||||||
sectionType: 'about'
|
img: test.jpg
|
||||||
img:
|
|
||||||
src: https://placehold.co/400
|
|
||||||
alt: This is a placeholder
|
|
||||||
socials:
|
socials:
|
||||||
github: https://github.com
|
github: https://github.com
|
||||||
---
|
---
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue