Compare commits

..

No commits in common. "2b4b43b22594ce13b41c2bf501e8c8e0e7a6e581" and "836136b98c03328cbdc8d049d892d11803147f08" have entirely different histories.

5 changed files with 4 additions and 51 deletions

22
.vscode/settings.json vendored
View file

@ -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"
}

View file

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

View file

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

View file

@ -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 % }-->

View file

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