Skip to content

Commit

Permalink
adding projects
Browse files Browse the repository at this point in the history
  • Loading branch information
kinlane committed Jan 15, 2021
1 parent 2f77926 commit 96a07d6
Show file tree
Hide file tree
Showing 431 changed files with 5,976 additions and 36 deletions.
9 changes: 8 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ collections:
videos:
output: true
permalink: /videos/:path/
projects:
output: true
permalink: /projects/:path/

defaults:
- scope:
Expand All @@ -67,7 +70,7 @@ defaults:
- scope:
type: sectors
values:
layout: sectors
layout: sectors
- scope:
type: specifications
values:
Expand Down Expand Up @@ -96,3 +99,7 @@ defaults:
type: videos
values:
layout: videos
- scope:
type: projects
values:
layout: projects
3 changes: 3 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@
<li class="{% if page.title == 'Videos' %}current {% endif %}dropdown">
<a href="/videos/">Videos</a>
</li>
<li class="{% if page.title == 'Projects' %}current {% endif %}dropdown">
<a href="/projects/">Projects</a>
</li>
<li class="{% if page.title == 'Blog' %}current {% endif %}dropdown">
<a href="/blog/">Blog</a>
</li>
Expand Down
57 changes: 57 additions & 0 deletions _includes/projects/projects-tag-tabs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!--Category Tabs Box-->
<div class="category-tabs-box">
<!--Product Tabs-->
<div class="prod-tabs tabs-box">
<!--Tab Btns-->
<div class="tab-btns tab-buttons clearfix">
<div class="pull-left">
<div class="category">Projects</div>
</div>
<div class="pull-right">
<div></div>
</div>
</div>
<!--Tabs Container-->
<div class="tabs-content">

<!--Tab / Active Tab-->
<div class="tab active-tab" id="prod-alls">
<div class="content">
<div class="row clearfix">

{% assign projects = site.projects %}
{% assign projects = projects | sort: 'name' %}
{% for entry in projects limit: projects_listing_count %}

{% assign website_url = '' %}
{% for common in entry.x-common %}
{% if common.type == 'x-website' %}
{% assign website_url = common.url %}
{% endif %}
{% endfor %}

<div class="news-block-two col-lg-6 col-md-6 col-sm-12">
<div class="inner-box">
<div class="image">
<img src="{{ entry.image }}" alt="" style="border: 8px solid #ccc; width: 100%; height: 200px;" />
</div>
<div class="lower-box">
<h3><a href="{{ entry.url }}">{{ entry.name }}</a></h3>
<ul class="post-meta">
<li><span class="icon fa fa-clock-o"></span>{{ entry.modified | date: "%b %d, %y" }}</li>
</ul>
<div class="text">{{ entry.description | truncate: 395 | strip_html }}</div>
<!--<strong>Website:</strong> <a href="{{ website_url }}" target="_blank">{{ website_url }}</a>-->
</div>
</div>
</div>
{% endfor %}

</div>
</div>
</div>

</div>
</div>
</div>
<!--End Category Info Tabs-->
14 changes: 14 additions & 0 deletions _includes/projects/projects-tag-widget.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!--Tag Widget-->
<div class="sidebar-widget categories-widget">
<div class="sidebar-title">
<h2>Tags</h2>
</div>
<ul class="cat-list">
{% assign tags = site.tags %}
{% assign tags = tags | sort: 'name' %}
{% for tag in tags limit: 25 %}
<li class="clearfix"><a href="/tags/{{ tag.name | replace: " ", "-" | downcase }}/#projects">{{ tag.name }}</a></li>
{% endfor %}
</ul>
</div>
<!--End Tag Widget-->
41 changes: 41 additions & 0 deletions _includes/projects/projects-widget.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!--News Post Widget-->
<div class="sidebar-widget posts-widget">
<!--Product widget Tabs-->
<div class="product-widget-tabs">
<!--Product Tabs-->
<div class="prod-tabs tabs-box">
<!--Tab Btns-->
<ul class="tab-btns tab-buttons clearfix">
<li data-tab="#prod-popular" class="tab-btn active-btn">Popular</li>
</ul>
<!--Tabs Container-->
<div class="tabs-content">
<!--Tab / Active Tab-->
<div class="tab active-tab" id="prod-popular">
<div class="content">

{% assign projects = site.projects %}
{% assign projects = projects | sort: 'x-rank' | reverse %}
{% for entry in projects limit:6 %}

<article class="widget-post">
<figure class="post-thumb">
<a href="{{ entry.url }}"><img src="{{ entry.image }}" alt=""></a>
<div class="overlay"><span class="icon qb-play-arrow"></span></div>
</figure>
<div class="text"><a href="{{ entry.url }}">{{ entry.name }}</a></div>
<div class="post-info">{{ entry.modified | date: "%b %d, %y" }}</div>
</article>

{% endfor %}

</div>
</div>
<!--Tab-->

</div>
</div>
</div>
<!--End Product Info Tabs-->
</div>
<!--End Post Widget-->
4 changes: 4 additions & 0 deletions _layouts/extensions.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ <h2>{{ page.name }}</h2>
{{ page.description }}
</div>

<code><pre>
{{ page.example | jsonify }}
</pre></code>

<ul class="new-article clearfix">
<li><a href="#"><span class="fa fa-angle-left"></span> &ensp; &ensp; &ensp; &ensp; Previous Extension</a></li>
<li><a href="#">Next Extension &ensp; &ensp; &ensp; &ensp; <span class="fa fa-angle-right"></span></a></li>
Expand Down
75 changes: 75 additions & 0 deletions _layouts/projects.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
layout: default
---

<!--Sidebar Page Container-->
<div class="sidebar-page-container" style="padding-top: 25px;">
<div class="auto-container">
<div class="row clearfix">

<!--Content Side-->
<div class="content-side col-lg-8 col-md-12 col-sm-12">
<div class="content">
<div class="blog-single">
<div class="inner-box">
<div class="upper-box">
<ul class="breadcrumb-bar">
<li><a href="#">Home</a></li>
<li>Projects</li>
<li>{{ page.name }}</li>
</ul>
<ul class="tag-title">
{% for tag in page.tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
<h2>{{ page.name }}</h2>
</div>
<div class="text">
{{ page.description }}
</div>

{% include apis-json/set-common-properties.html %}

<div align="center" style="border-top:1px solid #e2e2e2; margin-top: 30px;">
<table style="margin-top: 20px;" cellpadding="5" cellspacing="5">
<tr>
{% if website_url != '' %}
<td style="padding: 15px;"><a href=""><img src="https://kinlane-productions2.s3.amazonaws.com/bw-icons/bw-home-icon.jpeg" width="50"></a></td>
{% endif %}
{% if twitter_url != '' %}
<td style="padding: 15px;"><a href="{{ twitter_url }}"><img src="https://kinlane-productions2.s3.amazonaws.com/bw-icons/bw-twitter-icon.png" width="50"></a></td>
{% endif %}
{% if github_url != '' %}
<td style="padding: 15px;"><a href="{{ github_url }}"><img src="https://kinlane-productions2.s3.amazonaws.com/bw-icons/bw-github-icon.png" width="50"></a></td>
{% endif %}
</tr>
</table>
</div>

<ul class="new-article clearfix">
<li><a href="#"><span class="fa fa-angle-left"></span> &ensp; &ensp; &ensp; &ensp; Previous Projects</a></li>
<li><a href="#">Next Tool &ensp; &ensp; &ensp; &ensp; <span class="fa fa-angle-right"></span></a></li>
</ul>
</div>

</div>
</div>
</div>

<!--Sidebar Side-->
<div class="sidebar-side col-lg-4 col-md-12 col-sm-12">
<aside class="sidebar default-sidebar right-sidebar">

{% include social/social-widget.html %}

{% include advertising/advertising-widget.html %}

{% include projects/projects-tag-widget.html %}

</aside>
</div>
</div>
</div>
</div>
<!--End Sidebar Page Container-->
18 changes: 18 additions & 0 deletions _projects/api-specification-toolbox-community-newsletter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Community Newsletter
slug: api-specification-toolbox-community-newsletter
description: This is an ongoing project to produce a newsletter about API specifications. It is crowdsources via a Github repository and is designed to showcase all the resource areas highlighted as part of the API Specification Toolbox (ie. specifications, extensions, news, services, tools, sectors, videos, and projects).
image: http://api.specificationtoolbox.com/images/projects.png
tags:
- Newsletters
- Communications
created: "2021-01-05"
modified: "2021-01-05"
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_projects/api-specification-toolbox-community-newsletter.md
specificationVersion: "0.14"
apis: []
include: []
x-common:
- type: x-github
url: https://github.com/api-specification-toolbox/newsletter
...
17 changes: 17 additions & 0 deletions _projects/podcasts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Podcasts
slug: podcasts
description: This is a project to develop podcasts about API specifications. Helping showcase and develop podcasts with different individuals in the space. Providing a regular stream of conversations about API specifications that people can tune into. Like other projects this is being developed via Github, so if you want to get involved head over to the GIthub repo for the project and get involved.
image: http://api.specificationtoolbox.com/images/projects.png
tags:
- Podcasts
created: "2021-01-05"
modified: "2021-01-05"
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_projects/podcasts.md
specificationVersion: "0.14"
apis: []
include: []
x-common:
- type: x-github
url: https://github.com/api-specification-toolbox/podcasts
...
19 changes: 19 additions & 0 deletions _projects/propaganda-posters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Propaganda Posters
slug: propaganda-posters
description: This is a project to create propaganda posters for API specifications. It would be nice to have motivational and inspirational posters that help folks get behind API specifications for meaningful purposes. Like other projects we are using Github to manage efforts around this work, and if you want to get involved feel free to submit a Github issue or send email to [email protected].
image: http://api.specificationtoolbox.com/images/projects.png
tags:
- Communications
- Posters
- Graphics
created: "2021-01-05"
modified: "2021-01-05"
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_projects/propaganda-posters.md
specificationVersion: "0.14"
apis: []
include: []
x-common:
- type: x-github
url: https://github.com/api-specification-toolbox/propaganda-posters
...
18 changes: 18 additions & 0 deletions _projects/video-interviews.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Video Interviews
slug: video-interviews
description: This is a project to develop video interviews about API specifications from a variety of individuals. Providing a regular stream of video content that can be showcased here on the site and syndicated to other locations. Like all projects here, this is being managed via GitHub, and you can visit the Github repo to get involved.
image: http://api.specificationtoolbox.com/images/projects.png
tags:
- Videos
- Interviws
created: "2021-01-05"
modified: "2021-01-05"
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_projects/video-interviews.md
specificationVersion: "0.14"
apis: []
include: []
x-common:
- type: x-github
url: https://github.com/api-specification-toolbox/video-interviews
...
19 changes: 19 additions & 0 deletions _projects/white-papers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: White Papers
slug: white-papers
description: This is an ongoing project to create different white papers around the specifications, different stops along the API lifecycle, or any other relevant topic. The goal is to incentivize the researching, writing, editing, publishing, and syndication of useful white papers that will help people understand the potential of API specifications.
image: http://api.specificationtoolbox.com/images/projects.png
tags:
- White Papers
- Content
- Educational
created: "2021-01-14"
modified: "2021-01-14"
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_projects/white-papers.md
specificationVersion: "0.14"
apis: []
include: []
x-common:
- type: x-github
url: https://github.com/api-specification-toolbox/white-papers
...
19 changes: 19 additions & 0 deletions _projects/workshops.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Workshops
slug: workshops
description: This is an ongoing project to develop workshops on API specifications, helping provide education for the community. The goal is to help aggregate and drive workshops from a variety of providers, and organize them into a single calendar that can be drive as part of this toolbox website. If you want to get
image: http://api.specificationtoolbox.com/images/projects.png
tags:
- Workshops
- Trainings
- Education
created: "2021-01-05"
modified: "2021-01-05"
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_projects/workshops.md
specificationVersion: "0.14"
apis: []
include: []
x-common:
- type: x-github
url: https://github.com/api-specification-toolbox/workshops
...
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@
<li class="dropdown">
<a href="/videos/">Videos</a>
</li>
<li class="dropdown">
<a href="/projects/">Projects</a>
</li>
<li class="dropdown">
<a href="/blog/">Blog</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@
<li class="dropdown">
<a href="/videos/">Videos</a>
</li>
<li class="dropdown">
<a href="/projects/">Projects</a>
</li>
<li class="dropdown">
<a href="/blog/">Blog</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@
<li class="dropdown">
<a href="/videos/">Videos</a>
</li>
<li class="dropdown">
<a href="/projects/">Projects</a>
</li>
<li class="dropdown">
<a href="/blog/">Blog</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@
<li class="dropdown">
<a href="/videos/">Videos</a>
</li>
<li class="dropdown">
<a href="/projects/">Projects</a>
</li>
<li class="dropdown">
<a href="/blog/">Blog</a>
</li>
Expand Down
Loading

0 comments on commit 96a07d6

Please sign in to comment.