Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pubs project pages #176

Merged
merged 2 commits into from
Mar 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions _includes/pub_project_listing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<li class="pub_project_description">
{% assign extension = post.link | slice: -4, 4 %}
<a class="post-link" href="{{ post.link }}" target="\_blank"><strong>{{ post.title }}</strong>&nbsp;
{% if extension == '.pdf' %}
[pdf]
{% else %}
[url]
{% endif %}
</a>
{% if post.pdf %}
&nbsp;<a href="{{ post.pdf }}" target="\_blank">[pdf]</a>
{% endif %}

{% if post.content.size > 1 %}
{{post.content}}
{% else %}
<p></p>
{% endif %}
</li>
2 changes: 1 addition & 1 deletion _includes/publication_listing.html
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
{% endif %}

{% if post.content.size > 1 %}
{{post.content}}
{{post.content}}
{% else %}
<p></p>
{% endif %}
7 changes: 6 additions & 1 deletion assets/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 7 additions & 9 deletions projects/_posts/2015-03-22-powerpack.md
Original file line number Diff line number Diff line change
@@ -66,14 +66,12 @@ summary: "The portable PowerPack has multiple potential uses but was primarily d
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{%if post.tags contains 'PowerPack' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none">
{% for post in site.categories.publications %}
{%if post.tags contains 'PowerPack' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
16 changes: 7 additions & 9 deletions projects/_posts/2015-12-25-scale-up-initiative.md
Original file line number Diff line number Diff line change
@@ -125,15 +125,13 @@ summary: "Nigeria’s Office of the Senior Special Assistant to the Millennium D
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'NMIS' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'NMIS' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>

Original file line number Diff line number Diff line change
@@ -158,14 +158,12 @@ summary: "Energy issues facing society are one of the biggest technological and
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Sustainable Energy Solutions Program' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Sustainable Energy Solutions Program' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
22 changes: 10 additions & 12 deletions projects/_posts/2015-12-26-millenium-villages-project.md
Original file line number Diff line number Diff line change
@@ -207,17 +207,15 @@ summary: "The Earth Institute’s Millennium Villages project (MVP) is striving
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Millennium Villages Project' %}
{% include publication_listing.html post=post %}
{% endif %}
{% if post.tags contains 'Millennium Development Goals' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Millennium Villages Project' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% if post.tags contains 'Millennium Development Goals' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
16 changes: 7 additions & 9 deletions projects/_posts/2015-12-27-dristhi.md
Original file line number Diff line number Diff line change
@@ -103,14 +103,12 @@ summary: Can mHealth revolutionize mother and child care in India? The Sustainab
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Dristhi' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Dristhi' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
Original file line number Diff line number Diff line change
@@ -87,16 +87,15 @@ summary: "Natural gas is a growing share in the global primary energy mix—curr

<div class="row-fluid">
<div class="span12">
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Natural Gas' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Natural Gas' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
16 changes: 7 additions & 9 deletions projects/_posts/2015-12-29-project-nyc-energy-mapping.md
Original file line number Diff line number Diff line change
@@ -72,14 +72,12 @@ summary: "The Modi Research Group's New York City Energy Mapping Project was joi
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'NYC Energy' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'NYC Energy' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
16 changes: 7 additions & 9 deletions projects/_posts/2017-03-22-quench.md
Original file line number Diff line number Diff line change
@@ -154,14 +154,12 @@ summary: "Access to safe drinking water is an immense and multi-faceted problem
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{%if post.tags contains 'Quench' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none">
{% for post in site.categories.publications %}
{%if post.tags contains 'Quench' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
16 changes: 7 additions & 9 deletions projects/_posts/2017-03-23-acacia-irrigation-project.md
Original file line number Diff line number Diff line change
@@ -232,14 +232,12 @@ summary: "Irrigation of crops is critical to agricultural success, but in Senega
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Acacia Irrigation' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none">
{% for post in site.categories.publications %}
{% if post.tags contains 'Acacia Irrigation' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
54 changes: 26 additions & 28 deletions projects/_posts/2017-03-24-shared-solar.md
Original file line number Diff line number Diff line change
@@ -79,8 +79,6 @@ summary: "Most rural communities have two options for electrification: wait for
</div>
</div>



<div class="row-fluid">
<div class="span12">
<hr />
@@ -99,44 +97,44 @@ summary: "Most rural communities have two options for electrification: wait for
<strong>Social and Environmental</strong> <br /> Health and safety problems from toxic fumes and poor quality lighting are eliminated. Clinics, schools, community centers and drinking water systems can all receive reliable power without burdening themselves with maintenance of separate stand-alone systems. Tariff-enabled financing permits leasing-to-own models for efficient appliances without the additional costs of micro-finance transactions.
</p>

<p>
<strong>Economic &#038; Employment</strong> <br /> Income-generating activities like agriculture, entertainment, ice-making, tourism etc can be powered sustainably. Systems can be upgraded when demand grows, ensuring precious capital is used judiciously while at the same time allowing customers and local entrepreneurs to grow their demands as they need without having to upgrade their individual systems.
</p>
<p>
<strong>Economic &#038; Employment</strong> <br /> Income-generating activities like agriculture, entertainment, ice-making, tourism etc can be powered sustainably. Systems can be upgraded when demand grows, ensuring precious capital is used judiciously while at the same time allowing customers and local entrepreneurs to grow their demands as they need without having to upgrade their individual systems.
</p>

<div class="row-fluid">
<div class="span9">
<hr />
<div class="row-fluid">
<div class="span9">
<hr />

<a id="SuccessStories"></a>
<a id="SuccessStories"></a>

<h3>
Success Stories
</h3>
<h3>
Success Stories
</h3>

<img src="/assets/uploads/blog/2014/10/sharedSolar_success.jpg" alt="sharedSolar_success" />
<img src="/assets/uploads/blog/2014/10/sharedSolar_success.jpg" alt="sharedSolar_success" />

<p>
</p>
<p>
</p>

<p>
A group of women in Mali have started a cold-drink business by leasing a refrigeration system that they pay off through their electricity tariff.
</p>
</div>
<p>
A group of women in Mali have started a cold-drink business by leasing a refrigeration system that they pay off through their electricity tariff.
</p>
</div>
</div>
</div>
</div>

<div class="row-fluid">
<div class="span12">
<hr />
<a id="Papers"></a>
<h3>Papers</h3>
<p>
<div style="list-style-type:none">
{% for post in site.categories.publications %}
{%if post.tags contains 'Shared Solar' %}
{% include publication_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</p>
<div class="post-list" style="list-style-type:none;">
{% for post in site.categories.publications %}
{% if post.tags contains 'Shared Solar' %}
{% include pub_project_listing.html post=post %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
Original file line number Diff line number Diff line change
@@ -7,4 +7,4 @@ tags:
- Millennium Villages Project
---

An overview and assessment of the millennium village project energy and infrastructure sector after five years
<p>An overview and assessment of the millennium village project energy and infrastructure sector after five years</p>
Original file line number Diff line number Diff line change
@@ -6,4 +6,4 @@ tags:
- Natural Gas
---

Project Summary
<p>Project Summary</p>
2 changes: 1 addition & 1 deletion publications/_posts/2016-01-29-Senegal-Final-Report-.md
Original file line number Diff line number Diff line change
@@ -6,4 +6,4 @@ tags:
- Millennium Development Goals
---

Costing for national electricity interventions to increase access to energy, health services, and education
<p>Costing for national electricity interventions to increase access to energy, health services, and education</p>
Original file line number Diff line number Diff line change
@@ -7,4 +7,4 @@ tags:
- Millennium Villages Project
---

Testing institutional biomass cookstoves in rural Kenyan schools for the Millennium Villages Project
<p>Testing institutional biomass cookstoves in rural Kenyan schools for the Millennium Villages Project</p>
2 changes: 1 addition & 1 deletion publications/_posts/2016-01-31-Cellular-Citizenship-.md
Original file line number Diff line number Diff line change
@@ -8,4 +8,4 @@ tags:
- NMIS
---

Highlights cell phones’ use in data and information systems for smarter development
<p>Highlights cell phones’ use in data and information systems for smarter development</p>
Original file line number Diff line number Diff line change
@@ -6,4 +6,4 @@ tags:
- Natural Gas
---

Workshop Summary
<p>Workshop Summary</p>
Original file line number Diff line number Diff line change
@@ -6,4 +6,4 @@ tags:
- Natural Gas
---

The economic viability of developing a natural gas transmission system across Eastern and Southern Africa
<p>The economic viability of developing a natural gas transmission system across Eastern and Southern Africa</p>
2 changes: 1 addition & 1 deletion publications/_posts/2016-08-11-ict-and-sdgs.md
Original file line number Diff line number Diff line change
@@ -6,4 +6,4 @@ tags:
- Millennium Development Goals
---

How Information and Communications Technology can Accelerate Action on the Sustainable Development Goals
<p>How Information and Communications Technology can Accelerate Action on the Sustainable Development Goals</p>
2 changes: 1 addition & 1 deletion publications/_posts/2017-03-23-NMIS.md
Original file line number Diff line number Diff line change
@@ -7,4 +7,4 @@ tags:
- NMIS
---

Information systems for monitoring, evaluation, execution and tracking
<p>Information systems for monitoring, evaluation, execution and tracking</p>
2 changes: 1 addition & 1 deletion publications/_posts/2017-03-23-acacia-irrigation.md
Original file line number Diff line number Diff line change
@@ -7,4 +7,4 @@ tags:
- Acacia Irrigation
---

Pay-as-you-go (or lease to own) system for smallholder irrigation
<p>Pay-as-you-go (or lease to own) system for smallholder irrigation</p>
Loading