Skip to content
Snippets Groups Projects
Unverified Commit 33f9e507 authored by Todd Dembrey's avatar Todd Dembrey Committed by GitHub
Browse files

Merge pull request #464 from OpenTechFund/bugfix/projects-page

Remove project page introduction
parents 22142e8d 6cbfac43
No related branches found
No related tags found
No related merge requests found
...@@ -5,18 +5,17 @@ ...@@ -5,18 +5,17 @@
<div class="wrapper wrapper--small wrapper--inner-space-large"> <div class="wrapper wrapper--small wrapper--inner-space-large">
<div class="media-box media-box--reverse"> <div class="media-box media-box--reverse">
{% include "utils/includes/media_box_icon.html" with page_icon=page.icon %} {% include "utils/includes/media_box_icon.html" with page_icon=page.icon %}
{% if page.introduction %}
<div class="media-box__content"> <div class="media-box__content">
{% if page.introduction %} <h4 class="media-box__teaser media-box__teaser--projectpage-introduction">{{ page.introduction }}</h4>
<h5 class="media-box__teaser">{{ page.introduction }}</h5>
{% endif %}
</div> </div>
{% endif %}
</div> </div>
<div class="wrapper wrapper--sidebar wrapper--inner-space-small"> <div class="wrapper wrapper--sidebar wrapper--inner-space-small">
<div> <div>
{% include "utils/includes/funding.html" %} {{ page.body }}
</div> </div>
<div> <div>
{% with contact_details=page.contact_details.all %} {% with contact_details=page.contact_details.all %}
{% if contact_details %} {% if contact_details %}
...@@ -31,9 +30,17 @@ ...@@ -31,9 +30,17 @@
</div> </div>
</div> </div>
{% include "projects/includes/project_status.html" %} {% include "projects/includes/project_status.html" %}
{{ page.body }} <div class="wrapper wrapper--inner-space-small">
<div>
{% include "utils/includes/funding.html" %}
</div>
</div>
{% if page.category_options.all %} {% if page.category_options.all %}
<div class="grid grid--two grid--small-gap"> <div class="grid grid--two grid--small-gap">
......
...@@ -126,8 +126,12 @@ ...@@ -126,8 +126,12 @@
} }
.media-box--reverse & { .media-box--reverse & {
@extend %h5; @include responsive-font-sizes(15px, map-get($font-sizes, epsilon));
display: block; display: block;
&--projectpage-introduction {
@include responsive-font-sizes(18px, map-get($font-sizes, delta));
}
} }
.media-box--reverse:hover & { .media-box--reverse:hover & {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment