ourphone update #9
@@ -33,7 +33,7 @@ Pre-order **OurPhone™** and become one of the firsts to unlock a secured d
 | 
			
		||||
 | 
			
		||||
|||
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
<button>[Buy 3Node](https://forms.gle/G2qoLLDAsGLdjNgX6)</button>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@
 | 
			
		||||
    
 | 
			
		||||
    <body>
 | 
			
		||||
        {% 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 %}    
 | 
			
		||||
        </div>
 | 
			
		||||
        {% include "partials/footer.html" %}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,23 +1,82 @@
 | 
			
		||||
{% extends "_default/base.html" %}
 | 
			
		||||
{% 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 -->
 | 
			
		||||
<main>
 | 
			
		||||
 | 
			
		||||
<div class="sm:w-5/6 md:w-4/5 mr-auto ml-auto px-6 lg:px-16 xl:w-11/12">
 | 
			
		||||
<img class="max-h-60 sm:max-h-60 md:max-h-80 lg:max-h-96 mx-auto" src={{"/" ~ page.extra.imgPath}} alt="">
 | 
			
		||||
<div>
 | 
			
		||||
    <article class="article lg:w-5/6 mx-auto">
 | 
			
		||||
    <h2 class="tracking-tight pt-8 lg:pt-8 2xl:pt-24 text-left fw-500 leading-snug font-normal mb-10">
 | 
			
		||||
        {{ page.title }} 
 | 
			
		||||
    </h2>
 | 
			
		||||
    <h4 class="text-sm not-italic font-light leading-6 text-gray-600"> 
 | 
			
		||||
    </h4>
 | 
			
		||||
        
 | 
			
		||||
      {{ page.content | safe }}
 | 
			
		||||
    </article>
 | 
			
		||||
</div>
 | 
			
		||||
</div>
 | 
			
		||||
</main>
 | 
			
		||||
{% set split = page.content | split(pat="threefold.io") %}
 | 
			
		||||
{% if split | length < 2 %} {% set content=page.content %} {% else %} {% set content="" %} {% for part in split %} {% if
 | 
			
		||||
  part is starting_with("/blog") %} {% set split_part=part | split(pat='/">' ) %} {% set link=split_part[0] %} {% set
 | 
			
		||||
  link=link | replace(from="/blog/post" , to="/blog" ) %} {% set link=link | replace(from="_" , to="-" ) %} {% set
 | 
			
		||||
  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>
 | 
			
		||||
 | 
			
		||||
{% endblock content %}
 | 
			
		||||
  <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 }}
 | 
			
		||||
        </h1>
 | 
			
		||||
 | 
			
		||||
        <h4 class="lg:text-2xl text-base text-gray-600 leading-8">
 | 
			
		||||
          {{ page.description }}
 | 
			
		||||
        </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>
 | 
			
		||||
 | 
			
		||||
            <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>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  </div>
 | 
			
		||||
  </main>
 | 
			
		||||
 | 
			
		||||
  {% endblock content %}
 | 
			
		||||
@@ -1,13 +1,13 @@
 | 
			
		||||
{% 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
 | 
			
		||||
    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 taxonomy = path_array[1] %}
 | 
			
		||||
  {% set category = path_array[2] %}
 | 
			
		||||
    The Latest from ThreeFold   
 | 
			
		||||
    The Latest from OurPhone   
 | 
			
		||||
    {% if taxonomy == "categories" %} - 
 | 
			
		||||
        {{category | replace(from='-', to=' ' ) | title}}
 | 
			
		||||
    {% endif %}
 | 
			
		||||
@@ -15,9 +15,9 @@
 | 
			
		||||
  <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">
 | 
			
		||||
      {%- for post in paginator.pages %} 
 | 
			
		||||
        {% if "Engineering" == "Engineering"%}
 | 
			
		||||
          {% if not post.extra.hidden %}
 | 
			
		||||
            {% include "partials/postCard.html" %} 
 | 
			
		||||
        {%endif%} {%- endfor %}
 | 
			
		||||
         {%endif%} {%- endfor %}
 | 
			
		||||
    </div>
 | 
			
		||||
    <hr class="mt-6" />
 | 
			
		||||
    <p class="text-center text-sm mt-2 mb-16">
 | 
			
		||||
@@ -67,4 +67,4 @@
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
{% endblock content %}
 | 
			
		||||
{% endblock content %}
 | 
			
		||||
@@ -1,29 +1,36 @@
 | 
			
		||||
<body>
 | 
			
		||||
        
 | 
			
		||||
    <div class="md:grid md:grid-cols-2 md:gap-8 relative mt-16 lg:mt-16 items-center">
 | 
			
		||||
      <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>
 | 
			
		||||
        <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">
 | 
			
		||||
                {{ featured.title }}
 | 
			
		||||
            </h2>
 | 
			
		||||
        </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"> 
 | 
			
		||||
            {{ featured.date | date(format="%B %e, %Y", timezone="America/Chicago")}} - 
 | 
			
		||||
            {{ featured.extra.author }}
 | 
			
		||||
        </h4>
 | 
			
		||||
            
 | 
			
		||||
      </div>
 | 
			
		||||
{% 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>
 | 
			
		||||
 | 
			
		||||
  <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">
 | 
			
		||||
      <h3 class="text-base not-italic leading-6 text-gray-600">FEATURED POST</h3>
 | 
			
		||||
      <a href={{featured.permalink}} class="">
 | 
			
		||||
        <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 }}
 | 
			
		||||
        </h2>
 | 
			
		||||
      </a>
 | 
			
		||||
      <h4 class="text-sm not-italic font-light leading-6 text-gray-600">
 | 
			
		||||
        {{ featured.date | date(format="%B %e, %Y", timezone="America/Chicago")}} -
 | 
			
		||||
      </h4>
 | 
			
		||||
 | 
			
		||||
      <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="" />
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="mx-4 relative lg:mt-0 max-w-full">
 | 
			
		||||
      <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>
 | 
			
		||||
</body> 
 | 
			
		||||
 | 
			
		||||
  <hr class="mt-6">
 | 
			
		||||
 | 
			
		||||
  </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</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-shrink-0">
 | 
			
		||||
      <img class="h-48 w-full mx-auto object-cover" src=/{{post.extra.imgPath}} alt="" />
 | 
			
		||||
    </div>
 | 
			
		||||
    <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-7 font-medium text-gray-900 text-left not-italic">
 | 
			
		||||
            {{ post.title }}
 | 
			
		||||
          </h3>
 | 
			
		||||
          {% if post.description %}
 | 
			
		||||
          <p class="mt-3 text-sm font-normal leading-6 text-gray-500 text-left">
 | 
			
		||||
              {{ post.description }}
 | 
			
		||||
  <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">
 | 
			
		||||
        <img class="h-48 w-full mx-auto object-cover" src={{img_url}} alt="{{post.title ~ ' Picture'}}" />
 | 
			
		||||
      </div>
 | 
			
		||||
      {%endif%}
 | 
			
		||||
      <div class="flex-1 bg-white p-6 flex flex-col justify-between">
 | 
			
		||||
 | 
			
		||||
        <h3 class="mt-2 text-xl leading-6 font-medium text-gray-900 text-left not-italic">
 | 
			
		||||
          {{ post.title }}
 | 
			
		||||
        </h3>
 | 
			
		||||
        {% if post.description %}
 | 
			
		||||
        <p class="mt-3 text-sm font-normal text-gray-500 text-left">
 | 
			
		||||
          {{ post.description }}
 | 
			
		||||
        </p>
 | 
			
		||||
        {% endif %}
 | 
			
		||||
        </a>
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="mt-6 flex items-center">
 | 
			
		||||
        <div>
 | 
			
		||||
          <p class="text-sm leading-5 font-medium text-gray-900 text-left">
 | 
			
		||||
              {{ post.extra.author }}
 | 
			
		||||
          </p>
 | 
			
		||||
          <div class="flex text-sm leading-5 text-gray-500 text-left">
 | 
			
		||||
            <time datetime="2020-03-16">
 | 
			
		||||
                {{ post.date | date(format="%B %e, %Y", timezone="America/Chicago") }}
 | 
			
		||||
            </time>
 | 
			
		||||
            <span class="mx-1">
 | 
			
		||||
              ·
 | 
			
		||||
            </span>
 | 
			
		||||
            <span>
 | 
			
		||||
              6 min read
 | 
			
		||||
            </span>
 | 
			
		||||
        <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 class="flex flex-col text-left leading-none uppercase">
 | 
			
		||||
                {% if author %}
 | 
			
		||||
                <p class="text-gray-700 text-xs">{{ author.title }}</p>
 | 
			
		||||
                {% endif %}
 | 
			
		||||
                <p class="text-gray-700 text-xs">
 | 
			
		||||
                  <time datetime="{{post.date}}">
 | 
			
		||||
                    {{ post.date | date(format="%B %e, %Y", timezone="America/Chicago") }}
 | 
			
		||||
                  </time>
 | 
			
		||||
                </p>
 | 
			
		||||
                <p class="flex justify-between lowercase my-2 items-center text-gray-700 text-xs"><span id="time"
 | 
			
		||||
                    class="time"></span>
 | 
			
		||||
                </p>
 | 
			
		||||
              </div>
 | 
			
		||||
              <br />
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    </a>
 | 
			
		||||
  </div>
 | 
			
		||||
 | 
			
		||||
</div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<style>
 | 
			
		||||
  .border-b {
 | 
			
		||||
    border-bottom-width: 1px !important;
 | 
			
		||||
  }
 | 
			
		||||
</style>
 | 
			
		||||
{% endif %}
 | 
			
		||||
		Reference in New Issue
	
	Block a user