219 lines
6.1 KiB
Vue
219 lines
6.1 KiB
Vue
<template>
|
|
<Layout :hideHeader="true" :disableScroll="true">
|
|
<div class="container sm:pxi-0 mx-auto overflow-x-hidden pt-24">
|
|
<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">
|
|
<g-image
|
|
:src="$page.project.logo"
|
|
class="rounded-full bg-gray-200 w-32 h-32 border-4 border-gray-400 mx-auto md:mx-0"
|
|
></g-image>
|
|
</div>
|
|
<div class="w-full md:w-5/6 text-center md:text-left md:pl-8 lg:pl-0">
|
|
<h1 class="pb-0 mb-0 mt-0 text-4xl font-medium">
|
|
{{ $page.project.title }}
|
|
<a
|
|
:href="$page.project.linkedin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="text-gray-400 hover:text-black"
|
|
>
|
|
<font-awesome :icon="['fab', 'linkedin']" />
|
|
</a>
|
|
</h1>
|
|
|
|
<p class="text-gray-700 text-xl" v-if="$page.project.bio">
|
|
{{ $page.project.bio }}
|
|
</p>
|
|
<div class="avatars">
|
|
<section>
|
|
<div class="avatars">
|
|
<div class="flex items-center">
|
|
<div class="flex justify-between items-center">
|
|
<ul class="list-none flex author-list m-0">
|
|
<li
|
|
v-for="member in $page.project.members"
|
|
:key="member.id"
|
|
class="author-list-item"
|
|
>
|
|
<g-link :to="member.path" v-tooltip="member.name">
|
|
<g-image
|
|
:src="member.image"
|
|
:alt="member.name"
|
|
class="w-8 h-8 rounded-full bg-gray-200 border-2 border-white"
|
|
/>
|
|
</g-link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="post-tags container mx-auto relative py-5">
|
|
<g-link
|
|
v-for="tag in $page.project.tags"
|
|
:key="tag.id"
|
|
:to="tag.path"
|
|
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.title }}</g-link
|
|
>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="pt-8 border-b mx-4 sm:-mx-4"></div>
|
|
|
|
<section class="post-content container mx-auto relative text-gray-700">
|
|
<div
|
|
class="post-content-text text-xl"
|
|
v-html="$page.project.content"
|
|
></div>
|
|
</section>
|
|
<div class="pt-8 border-b mx-4 sm:-mx-4"></div>
|
|
<br />
|
|
|
|
<section>
|
|
<div class="avatars">
|
|
<div class="flex items-center">
|
|
<div class="flex justify-between items-center">
|
|
<ul class="list-none flex author-list m-0">
|
|
<li
|
|
v-for="author in $page.project.author"
|
|
:key="author.id"
|
|
class="author-list-item"
|
|
>
|
|
<g-link :to="author.path" v-tooltip="author.name">
|
|
<g-image
|
|
:src="author.image"
|
|
:alt="author.name"
|
|
class="w-8 h-8 rounded-full bg-gray-200 border-2 border-white"
|
|
/>
|
|
</g-link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div
|
|
class="ml-3 pl-3 border-l flex flex-col text-xs leading-none uppercase"
|
|
>
|
|
<p>
|
|
<g-link :to="$page.project.path">
|
|
<time :datetime="$page.project.datetime">{{
|
|
$page.project.humanTime
|
|
}}</time>
|
|
</g-link>
|
|
</p>
|
|
<p>
|
|
<g-link :to="$page.project.path">
|
|
<time :datetime="$page.project.datetime">{{
|
|
$page.project.startDate
|
|
}}</time>
|
|
</g-link>
|
|
{{ $page.project.status }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|
|
</Layout>
|
|
</template>
|
|
|
|
<page-query>
|
|
query($id: ID!) {
|
|
project(id: $id) {
|
|
id
|
|
title
|
|
status
|
|
countries
|
|
startDate : startdate(format:"MM YYYY")
|
|
humanTime : created(format:"DD MMMM YYYY")
|
|
datetime : created(format:"ddd MMM DD YYYY hh:mm:ss zZ")
|
|
image(width:150, height:150)
|
|
image_caption
|
|
logo
|
|
cities
|
|
timeToRead
|
|
path
|
|
timeToRead
|
|
linkedin
|
|
content
|
|
tags {
|
|
id
|
|
title
|
|
path
|
|
}
|
|
members {
|
|
id
|
|
name
|
|
image(width:64, height:64, fit:inside)
|
|
path
|
|
}
|
|
websites
|
|
private
|
|
author {
|
|
id
|
|
name
|
|
image(width:64, height:64, fit:inside)
|
|
path
|
|
}
|
|
rank
|
|
excerpt
|
|
|
|
belongsTo {
|
|
totalCount
|
|
pageInfo {
|
|
totalPages
|
|
currentPage
|
|
}
|
|
edges {
|
|
node {
|
|
... on Person {
|
|
id
|
|
name
|
|
image(width:64, height:64, fit:inside)
|
|
path
|
|
project_ids{
|
|
id
|
|
title
|
|
path
|
|
logo
|
|
image
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</page-query>
|
|
|
|
<script>
|
|
import PostListItem from "~/components/PostListItem.vue";
|
|
import Pagination from "~/components/Pagination.vue";
|
|
|
|
export default {
|
|
components: {
|
|
Pagination,
|
|
PostListItem,
|
|
},
|
|
computed: {
|
|
postLabel: function () {
|
|
var pluralize = require("pluralize");
|
|
return pluralize("post", this.$page.project.belongsTo.totalCount);
|
|
},
|
|
},
|
|
metaInfo() {
|
|
return {
|
|
title: this.$page.project.title,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
|
|
.post-content-text {
|
|
font-family: "Roboto", sans-serif;
|
|
font-weight: 300;
|
|
}
|
|
</style> |