Fix partners
This commit is contained in:
@@ -14,6 +14,7 @@ extra:
|
||||
imgPath: images/casperlabs.png
|
||||
image_caption: casperlabs
|
||||
partner_logo: /images/casperlabLogo.png
|
||||
members: [medha_parlikar, neil_kapoor]
|
||||
author: [medha_parlikar, neil_kapoor]
|
||||
websites: https://casperlabs.io/
|
||||
private: 0
|
||||
|
||||
@@ -14,6 +14,7 @@ extra:
|
||||
imgPath: images/digicorp_labs2.png
|
||||
image_caption: digicorplabs
|
||||
partner_logo: /images/owncloud_logo.png
|
||||
members: [jozua_van_der_deijl, rudy_bouwman]
|
||||
author: [jozua_van_der_deijl, rudy_bouwman]
|
||||
websites: https://digicorplabs.com
|
||||
private: 0
|
||||
|
||||
@@ -14,6 +14,7 @@ extra:
|
||||
imgPath: images/owncloud2.png
|
||||
image_caption: own cloud
|
||||
partner_logo: /images/owncloud_logo.png
|
||||
members: [ingo_schildt]
|
||||
author: [ingo_schildt]
|
||||
websites: https://owncloud.com
|
||||
private: 0
|
||||
|
||||
@@ -14,6 +14,7 @@ extra:
|
||||
imgPath: images/tag.png
|
||||
image_caption: take_action_global
|
||||
partner_logo: /images/tag_logo.png
|
||||
members: [koen_timmers]
|
||||
author: [koen_timmers]
|
||||
websites: http://www.takeactionglobal.org/
|
||||
private: 0
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -51,7 +51,8 @@
|
||||
<meta property="twitter:description" content="{% if page.description %}{{ page.description }} {% endif %}" />
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
{% endblock title %}
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/brands.min.css" />
|
||||
<!-- Cookie Consent by https://www.FreePrivacyPolicy.com -->
|
||||
<script type="text/javascript" src="//www.freeprivacypolicy.com/public/cookie-consent/4.0.0/cookie-consent.js"
|
||||
charset="UTF-8"></script>
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{% extends "_default/base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<!-- Default page template for blog posts and basic informative markdown files -->
|
||||
<div class="container sm:pxi-0 mx-auto overflow-x-hidden pt-16 lg:w-4/6">
|
||||
<div class="flex flex-row flex-wrap items-center mx-4 sm:mx-0">
|
||||
<div class="w-full md:w-1/6 mx-auto sm:mx-0">
|
||||
@@ -19,12 +18,43 @@
|
||||
<h1 class="pb-0 mb-0 mt-0 text-4xl font-medium">
|
||||
{{ page.title }}
|
||||
</h1>
|
||||
{% if page.extra.bio %}
|
||||
<p class="text-gray-700 text-xl">
|
||||
{{ page.extra.bio }}
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
<div class="avatars">
|
||||
<section class="container mx-auto py-2">
|
||||
<ul class="list-none flex author-list my-2 px-0">
|
||||
{% if page.extra.websites %}
|
||||
<li>
|
||||
<a href="{{page.extra.websites}}" target="_blank" rel="noopener noreferrer"
|
||||
class="text-gray-400 hover:text-black linkedin_size mx-1">
|
||||
<i class="fa-solid fa-globe fa-2x"></i> </a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if page.extra.linkedin %}
|
||||
<li>
|
||||
<a href="{{page.extra.linkedin}}" target="_blank" rel="noopener noreferrer"
|
||||
class="text-gray-400 hover:text-black linkedin_size mx-1">
|
||||
<i class="fa-brands fa-linkedin fa-2x"></i> </a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% for tag in page.taxonomies.tags %}
|
||||
{% set fullpath = "/tags/" ~ tag %}
|
||||
<a href="{{ fullpath }}" class="
|
||||
text-xs
|
||||
bg-transparent
|
||||
hover:text-blue-700
|
||||
py-2
|
||||
px-4
|
||||
mr-2
|
||||
border
|
||||
hover:border-blue-500
|
||||
border-gray-600
|
||||
text-gray-700
|
||||
rounded-full
|
||||
">{{ tag }}</a>
|
||||
{% endfor %}
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -33,7 +63,6 @@
|
||||
<section class="post-content container mx-auto relative text-gray-700">
|
||||
<div class="post-content-text text-xl">{{ page.content | safe }}</div>
|
||||
</section>
|
||||
<div class="pt-8 border-b mx-4 sm:-mx-4"></div>
|
||||
</div>
|
||||
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user