-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructure posts into sections, create event pages for Melbourne and…
… Brisbane, add filtering to sections & speakers, add judges, add Google Map with jekyll-maps
- Loading branch information
Showing
15 changed files
with
167 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ source "https://rubygems.org" | |
|
||
gem "jekyll" | ||
gem "jekyll-paginate" | ||
gem "jekyll-maps" | ||
|
||
gem "bundler" | ||
gem "rake" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
layout: event | ||
title: Brisbane | ||
city: brisbane | ||
location: | ||
latitude: -32.5519657 | ||
longitude: 144.5057256 | ||
title: ThoughtWorks Brisbane | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
layout: event | ||
title: Melbourne | ||
city: melbourne | ||
location: | ||
latitude: -37.8166797 | ||
longitude: 144.9617733 | ||
title: ThoughtWorks Melbourne | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div class="post-teaser"> | ||
<header> | ||
<h1> | ||
<a class="post-link" href="{{ section.url | relative_url }}"> | ||
{{ section.title }} | ||
</a> | ||
</h1> | ||
</header> | ||
<div class="excerpt"> | ||
{{ section.content | markdownify }} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: Liam Pomfret | ||
job_and_qualifications: HDR Student - PhD, Associate Lecturer in Marketing | ||
cities: | ||
- melbourne | ||
--- | ||
|
||
Liam Pomfret is an Associate Lecturer in Marketing and a PhD candidate in the UQ Business School at The University of Queensland. His research looks into the antecedent social factors influencing consumers' privacy protection and sharing behaviours in social media. He currently serves on the boards of both the Australian Privacy Foundation and Electronic Frontiers Australia, and is a founding member of Digital Rights Watch Australia. He previously stood for Pirate Party Australia as a senate candidate for Queensland in the 2013 Federal Election. | ||
|
||
Subject: **Systems of Change for promoting Social Good** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
name: Matthew Rimmer | ||
job_and_qualifications: Professor, Intellectual Property and Innovation, Faculty of Law at Queensland University of Technology (QUT) | ||
cities: | ||
- brisbane | ||
--- | ||
|
||
Dr Matthew Rimmer is a Professor in Intellectual Property and Innovation Law at the Faculty of Law, at the Queensland University of Technology (QUT). He is a leader of the QUT Intellectual Property and Innovation Law research program, and a member of the QUT Digital Media Research Centre (QUT DMRC) the QUT Australian Centre for Health Law Research (QUT ACHLR), and the QUT International Law and Global Governance Research Program. Rimmer has published widely on copyright law and information technology, patent law and biotechnology, access to medicines, plain packaging of tobacco products, intellectual property and climate change, and Indigenous Intellectual Property. He is currently working on research on intellectual property, the creative industries, and 3D printing; intellectual property and public health; and intellectual property and trade, looking at the Trans-Pacific Partnership, the Trans-Atlantic Trade and Investment Partnership, and the Trade in Services Agreement. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<div class="home"> | ||
{% if site.theme_settings.header_text %} | ||
<div class="call-out" | ||
style="background-image: url('{{ site.baseurl }}/{{ site.theme_settings.header_text_feature_image }}')"> | ||
{{ site.theme_settings.header_text }} | ||
</div> | ||
{% endif %} | ||
|
||
<div class="posts"> | ||
{% for section in site.sections %} | ||
{% if section.cities contains page.city %} | ||
{% include section.html section=section %} | ||
{% endif %} | ||
{% endfor %} | ||
</div> | ||
|
||
<section class="speakers-or-judges"> | ||
<h1>Speakers</h1> | ||
{% for person in site.speakers %} | ||
{% if person.cities contains page.city %} | ||
{% include speaker_or_judge.html person=person %} | ||
{% endif %} | ||
{% endfor %} | ||
<h1>Judges</h1> | ||
{% for person in site.judges %} | ||
{% if person.cities contains page.city %} | ||
{% include speaker_or_judge.html person=person %} | ||
{% endif %} | ||
{% endfor %} | ||
</section> | ||
|
||
<section class="location"> | ||
<h1>Location</h1> | ||
{% google_map %} | ||
</section> | ||
|
||
{% if paginator.total_pages > 1 %} | ||
<div class="pagination"> | ||
{% if paginator.previous_page %} | ||
<a href="{{ paginator.previous_page_path | relative_url | replace: '//', '/' }}" class="button" > | ||
<i class="fa fa-chevron-left"></i> | ||
{{ site.theme_settings.str_previous_page }} | ||
</a> | ||
{% endif %} | ||
{% if paginator.next_page %} | ||
<a href="{{ paginator.next_page_path | relative_url | replace: '//', '/' }}" class="button" > | ||
{{ site.theme_settings.str_next_page }} | ||
<i class="fa fa-chevron-right"></i> | ||
</a> | ||
{% endif %} | ||
</div> | ||
{% endif %} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
layout: default | ||
--- | ||
<article {% if page.feature-img %}class="feature-image"{% endif %}> | ||
<header style="background-image: url('{{ site.baseurl }}/{{ page.feature-img }}')"> | ||
<h1 class="title">{{ page.title }}</h1> | ||
{% if page.subtitle %}<h2 class="subtitle">{{ page.subtitle }}</h2>{% endif %} | ||
<p class="meta"> | ||
{{ page.date | date: "%B %-d, %Y" }} | ||
{% if page.author %} - {{ page.author }}{% endif %} | ||
</p> | ||
</header> | ||
<section class="post-content">{{ content }}</section> | ||
{% include tags_list.html tags=page.tags tag_count=page.tags.size %} | ||
</article> | ||
|
||
<!-- Disqus --> | ||
{% if site.theme_settings.disqus_shortname %} | ||
<div class="comments"> | ||
{% include disqus.html %} | ||
</div> | ||
{% endif %} | ||
|
||
<!-- Post navigation --> | ||
{% if site.theme_settings.post_navigation %} | ||
{% include post_nav.html %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
_posts/2018-03-08-suggest-an-idea.md → _sections/suggest-an-idea.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
--- | ||
name: Matthew Rimmer | ||
job_and_qualifications: Professor, Intellectual Property and Innovation, Faculty of Law at Queensland University of Technology (QUT) | ||
cities: | ||
- brisbane | ||
--- | ||
|
||
Dr Matthew Rimmer is a Professor in Intellectual Property and Innovation Law at the Faculty of Law, at the Queensland University of Technology (QUT). He is a leader of the QUT Intellectual Property and Innovation Law research program, and a member of the QUT Digital Media Research Centre (QUT DMRC) the QUT Australian Centre for Health Law Research (QUT ACHLR), and the QUT International Law and Global Governance Research Program. Rimmer has published widely on copyright law and information technology, patent law and biotechnology, access to medicines, plain packaging of tobacco products, intellectual property and climate change, and Indigenous Intellectual Property. He is currently working on research on intellectual property, the creative industries, and 3D printing; intellectual property and public health; and intellectual property and trade, looking at the Trans-Pacific Partnership, the Trans-Atlantic Trade and Investment Partnership, and the Trade in Services Agreement. | ||
Dr Matthew Rimmer is a Professor in Intellectual Property and Innovation Law at the Faculty of Law, at the Queensland University of Technology (QUT). He is a leader of the QUT Intellectual Property and Innovation Law research program, and a member of the QUT Digital Media Research Centre (QUT DMRC) the QUT Australian Centre for Health Law Research (QUT ACHLR), and the QUT International Law and Global Governance Research Program. Rimmer has published widely on copyright law and information technology, patent law and biotechnology, access to medicines, plain packaging of tobacco products, intellectual property and climate change, and Indigenous Intellectual Property. He is currently working on research on intellectual property, the creative industries, and 3D printing; intellectual property and public health; and intellectual property and trade, looking at the Trans-Pacific Partnership, the Trans-Atlantic Trade and Investment Partnership, and the Trade in Services Agreement. |