fixs
This commit is contained in:
parent
13222e7897
commit
dd127ace35
@ -33,7 +33,7 @@ Pre-order **OurPhone™** and become one of the firsts to unlock a secured d
|
|||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
![image](./img/3nodes.png)
|
![image](./img/3NODES.png)
|
||||||
|
|
||||||
<button>[Buy 3Node](https://forms.gle/G2qoLLDAsGLdjNgX6)</button>
|
<button>[Buy 3Node](https://forms.gle/G2qoLLDAsGLdjNgX6)</button>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
{% include "partials/header.html" %}
|
{% include "partials/header.html" %}
|
||||||
<div id="content" class="mx-auto overflow-hidden">
|
<div id="content" class="p-4 pt-32 sm:p-12 md:p-16 lg:p-20 overflow-hidden">
|
||||||
{% block content %}{% endblock %}
|
{% block content %}{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
{% include "partials/footer.html" %}
|
{% include "partials/footer.html" %}
|
||||||
|
@ -1,23 +1,82 @@
|
|||||||
{% extends "_default/base.html" %}
|
{% extends "_default/base.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
{% if page.taxonomies.people %}
|
||||||
|
{% set people = get_section(path="people/_index.md") %}
|
||||||
|
{% set pages_str = people.pages | json_encode() | as_str %}
|
||||||
|
{% if pages_str is containing(page.taxonomies.people[0]) %}
|
||||||
|
{% set author_path = 'people/' ~ page.taxonomies.people[0] ~ '/index.md' %}
|
||||||
|
{% set author = get_page(path=author_path) %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<!-- Default page template for blog posts and basic informative markdown files -->
|
<!-- Default page template for blog posts and basic informative markdown files -->
|
||||||
<main>
|
|
||||||
|
|
||||||
<div class="sm:w-5/6 md:w-4/5 mr-auto ml-auto px-6 lg:px-16 xl:w-11/12">
|
{% set split = page.content | split(pat="threefold.io") %}
|
||||||
<img class="max-h-60 sm:max-h-60 md:max-h-80 lg:max-h-96 mx-auto" src={{"/" ~ page.extra.imgPath}} alt="">
|
{% if split | length < 2 %} {% set content=page.content %} {% else %} {% set content="" %} {% for part in split %} {% if
|
||||||
<div>
|
part is starting_with("/blog") %} {% set split_part=part | split(pat='/">' ) %} {% set link=split_part[0] %} {% set
|
||||||
<article class="article lg:w-5/6 mx-auto">
|
link=link | replace(from="/blog/post" , to="/blog" ) %} {% set link=link | replace(from="_" , to="-" ) %} {% set
|
||||||
<h2 class="tracking-tight pt-8 lg:pt-8 2xl:pt-24 text-left fw-500 leading-snug font-normal mb-10">
|
rest_part=split_part | slice(start=1) | join(sep='/"' ) %} {% set part=link ~ '/">' ~ rest_part %} {% endif %} {% if
|
||||||
|
loop.first %} {% set_global content=part%} {% else %} {% set_global content=content ~ "threefold.io" ~ part%} {% endif
|
||||||
|
%} {% endfor %} {% endif %} <main>
|
||||||
|
|
||||||
|
<div class="container mx-auto mt-20">
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<article class="article lg:w-4/6 mx-auto">
|
||||||
|
<h1 class="lg:text-5xl text-2xl font-medium leading-none mt-0 text-gray-700">
|
||||||
{{ page.title }}
|
{{ page.title }}
|
||||||
</h2>
|
</h1>
|
||||||
<h4 class="text-sm not-italic font-light leading-6 text-gray-600">
|
|
||||||
|
<h4 class="lg:text-2xl text-base text-gray-600 leading-8">
|
||||||
|
{{ page.description }}
|
||||||
</h4>
|
</h4>
|
||||||
|
<section class="post-author-list mb-3 mx-0">
|
||||||
|
<div class="flex items-center">
|
||||||
|
<div class="flex justify-between items-center">
|
||||||
|
<ul class="list-none flex author-list m-0">
|
||||||
|
<li class="author-list-item">
|
||||||
|
{% if author %}
|
||||||
|
{% set author_img = get_url(path='/' ~ author.relative_path | replace(from='_', to='-') |
|
||||||
|
replace(from='index.md', to=author.extra.imgPath)) %}
|
||||||
|
<img src="{{author_img}}" alt="{{author.title}}" class="
|
||||||
|
h-8
|
||||||
|
w-8
|
||||||
|
sm:h-10
|
||||||
|
sm:w-10
|
||||||
|
rounded-full
|
||||||
|
bg-gray-200
|
||||||
|
border-2 border-white
|
||||||
|
" />
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
{{ page.content | safe }}
|
<div class="pl-3 flex flex-col text-xs leading-none uppercase">
|
||||||
|
{% if author %}
|
||||||
|
<a href="{{author.permalink}}" class="text-gray-700 text-xs">{{ author.title }}</a>
|
||||||
|
{% endif %}
|
||||||
|
<p class="text-gray-700 text-xs">
|
||||||
|
<time datetime="{{ page.date }}"> {{ page.date | date(format="%B %e, %Y", timezone="America/Chicago")
|
||||||
|
}}</time><br />
|
||||||
|
<span id="time"
|
||||||
|
class="time"></span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="my-2 sharethis-inline-share-buttons"></div>
|
||||||
|
</section>
|
||||||
|
{% set img_url = get_url(path='/' ~ page.relative_path | replace(from='_', to='-') | replace(from='index.md',
|
||||||
|
to=page.extra.imgPath)) %}
|
||||||
|
<img class="mb-8 mx-auto" src={{img_url}} alt="{{page.title ~ 'Picture'}}">
|
||||||
|
<div>{{ content | safe }}</div>
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
{% endblock content %}
|
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
{% endblock content %}
|
@ -1,13 +1,13 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="font-sans text-center px-0 md:w-full md:w-2/3 lg:w-2/3 mx-8 md:mx-12">
|
<div class="text-center main-title px-0 md:w-2/3 lg:w-2/3 mx-8 md:mx-12">
|
||||||
<h1
|
<h1
|
||||||
class="tracking-tight text-5xl text-left text-2xl sm:text-3xl md:text-4xl lg:text-5xl fw-500 leading-snug font-normal mb-10"
|
class="tracking-tight text-left text-2xl md:text-4xl lg:text-5xl fw-500 leading-snug font-normal mb-10"
|
||||||
>
|
>
|
||||||
{% set path_array = current_path | split(pat="/") %}
|
{% set path_array = current_path | split(pat="/") %}
|
||||||
{% set taxonomy = path_array[1] %}
|
{% set taxonomy = path_array[1] %}
|
||||||
{% set category = path_array[2] %}
|
{% set category = path_array[2] %}
|
||||||
The Latest from ThreeFold
|
The Latest from OurPhone
|
||||||
{% if taxonomy == "categories" %} -
|
{% if taxonomy == "categories" %} -
|
||||||
{{category | replace(from='-', to=' ' ) | title}}
|
{{category | replace(from='-', to=' ' ) | title}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -15,7 +15,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<div class="mt-12 grid gap-5 max-w-lg mx-auto lg:grid-cols-2 xl:grid-cols-3 lg:max-w-none">
|
<div class="mt-12 grid gap-5 max-w-lg mx-auto lg:grid-cols-2 xl:grid-cols-3 lg:max-w-none">
|
||||||
{%- for post in paginator.pages %}
|
{%- for post in paginator.pages %}
|
||||||
{% if "Engineering" == "Engineering"%}
|
{% if not post.extra.hidden %}
|
||||||
{% include "partials/postCard.html" %}
|
{% include "partials/postCard.html" %}
|
||||||
{%endif%} {%- endfor %}
|
{%endif%} {%- endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,29 +1,36 @@
|
|||||||
|
{% if featured.taxonomies.people %}
|
||||||
|
{% set people = get_section(path="people/_index.md") %}
|
||||||
|
{% set pages_str = people.pages | json_encode() | as_str %}
|
||||||
|
{% if pages_str is containing(featured.taxonomies.people[0]) %}
|
||||||
|
{% set author_path = 'people/' ~ featured.taxonomies.people[0] ~ '/index.md' %}
|
||||||
|
{% set author = get_page(path=author_path) %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="md:grid md:grid-cols-2 md:gap-8 relative mt-16 lg:mt-16 items-center">
|
<div class="md:grid md:grid-cols-2 md:gap-8 relative mt-16 lg:mt-16 items-center container mx-auto">
|
||||||
<div class="relative lg:ml-8 my-8 w-full md:w-auto">
|
<div class="relative lg:ml-8 my-8 w-full md:w-auto">
|
||||||
<h3 class="text-base not-italic leading-6 text-gray-600">FEATURED POST</h3>
|
<h3 class="text-base not-italic leading-6 text-gray-600">FEATURED POST</h3>
|
||||||
<a href={{featured.permalink}} class="">
|
<a href={{featured.permalink}} class="">
|
||||||
<h2 class="mt-8 text-2xl sm:text-3xl md:text-4xl lg:text-5xl fw-500 leading-snug font-normal mb-2 md:mb-4">
|
<h2
|
||||||
|
class="mt-8 text-2xl main-title sm:text-3xl md:text-4xl lg:text-5xl fw-500 leading-snug font-normal mb-4 md:mb-10 ">
|
||||||
{{ featured.title }}
|
{{ featured.title }}
|
||||||
</h2>
|
</h2>
|
||||||
</a>
|
</a>
|
||||||
<p class="mb-4 md:mb-10 text-lg lg:pr-4">
|
|
||||||
{{featured.description}}
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h4 class="text-sm not-italic font-light leading-6 text-gray-600">
|
<h4 class="text-sm not-italic font-light leading-6 text-gray-600">
|
||||||
{{ featured.date | date(format="%B %e, %Y", timezone="America/Chicago")}} -
|
{{ featured.date | date(format="%B %e, %Y", timezone="America/Chicago")}} -
|
||||||
{{ featured.extra.author }}
|
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="-mx-4 relative lg:mt-0 max-w-full">
|
<div class="mx-4 relative lg:mt-0 max-w-full">
|
||||||
<img class="relative mx-auto w-7/12 md:w-auto md:max-w-full max-h-80" src=/{{featured.extra.imgPath}} alt="" />
|
<img class="relative mx-auto md:w-auto rounded md:max-w-full max-h-80" src={{featured.permalink}}{{featured.extra.imgPath}} alt="" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<hr class="mt-6">
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
@ -1,37 +1,75 @@
|
|||||||
|
{% if post.date %}
|
||||||
|
{% if post.taxonomies.people %}
|
||||||
|
{% set people = get_section(path="people/_index.md") %}
|
||||||
|
{% set pages_str = people.pages | json_encode() | as_str %}
|
||||||
|
{% if pages_str is containing(post.taxonomies.people[0]) %}
|
||||||
|
{% set author_path = 'people/' ~ post.taxonomies.people[0] ~ '/index.md' %}
|
||||||
|
{% set author = get_page(path=author_path) %}
|
||||||
|
{% set content = get_page(path=author_path) %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<div class="flex flex-col rounded-lg shadow-lg overflow-hidden">
|
<div class="flex flex-col rounded-lg shadow-lg overflow-hidden">
|
||||||
|
<div class="flex-1 border-b">
|
||||||
|
<a href="{{ post.permalink }}" class="block">
|
||||||
|
{% if post.extra.imgPath %}
|
||||||
|
{% set img_url = get_url(path='/' ~ post.relative_path | replace(from='_', to='-') | replace(from='index.md',
|
||||||
|
to=post.extra.imgPath)) %}
|
||||||
<div class="flex-shrink-0">
|
<div class="flex-shrink-0">
|
||||||
<img class="h-48 w-full mx-auto object-cover" src=/{{post.extra.imgPath}} alt="" />
|
<img class="h-48 w-full mx-auto object-cover" src={{img_url}} alt="{{post.title ~ ' Picture'}}" />
|
||||||
</div>
|
</div>
|
||||||
|
{%endif%}
|
||||||
<div class="flex-1 bg-white p-6 flex flex-col justify-between">
|
<div class="flex-1 bg-white p-6 flex flex-col justify-between">
|
||||||
<div class="flex-1">
|
|
||||||
<a href={{ post.permalink }} class="block">
|
<h3 class="mt-2 text-xl leading-6 font-medium text-gray-900 text-left not-italic">
|
||||||
<h3 class="mt-2 text-xl leading-7 font-medium text-gray-900 text-left not-italic">
|
|
||||||
{{ post.title }}
|
{{ post.title }}
|
||||||
</h3>
|
</h3>
|
||||||
{% if post.description %}
|
{% if post.description %}
|
||||||
<p class="mt-3 text-sm font-normal leading-6 text-gray-500 text-left">
|
<p class="mt-3 text-sm font-normal text-gray-500 text-left">
|
||||||
{{ post.description }}
|
{{ post.description }}
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</a>
|
<div class="article hidden">{{ post.content | safe }}</div>
|
||||||
|
|
||||||
|
<div class="w-full post-card-meta py-3">
|
||||||
|
<div class="avatars">
|
||||||
|
<div class="flex">
|
||||||
|
<div class="flex">
|
||||||
|
<ul class="list-none flex author-list mr-2 pl-0">
|
||||||
|
{% if author %}
|
||||||
|
{% set author_img = get_url(path='/' ~ author.relative_path | replace(from='_', to='-') |
|
||||||
|
replace(from='index.md', to=author.extra.imgPath)) %}
|
||||||
|
<li class="author-list-item"><img alt="{{author.title}}" src="{{author_img}}"
|
||||||
|
class="w-8 h-8 rounded-full bg-gray-200 border-2 border-white"></li>
|
||||||
|
{% endif %}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="mt-6 flex items-center">
|
<div class="flex flex-col text-left leading-none uppercase">
|
||||||
<div>
|
{% if author %}
|
||||||
<p class="text-sm leading-5 font-medium text-gray-900 text-left">
|
<p class="text-gray-700 text-xs">{{ author.title }}</p>
|
||||||
{{ post.extra.author }}
|
{% endif %}
|
||||||
</p>
|
<p class="text-gray-700 text-xs">
|
||||||
<div class="flex text-sm leading-5 text-gray-500 text-left">
|
<time datetime="{{post.date}}">
|
||||||
<time datetime="2020-03-16">
|
|
||||||
{{ post.date | date(format="%B %e, %Y", timezone="America/Chicago") }}
|
{{ post.date | date(format="%B %e, %Y", timezone="America/Chicago") }}
|
||||||
</time>
|
</time>
|
||||||
<span class="mx-1">
|
</p>
|
||||||
·
|
<p class="flex justify-between lowercase my-2 items-center text-gray-700 text-xs"><span id="time"
|
||||||
</span>
|
class="time"></span>
|
||||||
<span>
|
</p>
|
||||||
6 min read
|
</div>
|
||||||
</span>
|
<br />
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.border-b {
|
||||||
|
border-bottom-width: 1px !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{% endif %}
|
Loading…
Reference in New Issue
Block a user