-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Related to #955 - fellowships directory pages
- Loading branch information
Showing
14 changed files
with
292 additions
and
26 deletions.
There are no files selected for viewing
12 changes: 11 additions & 1 deletion
12
network-api/networkapi/fellows/templates/fellows_directory.html
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,5 +1,15 @@ | ||
{% extends "fellowships-base.html" %} | ||
|
||
{% block template_id %}fellows-directory{% endblock %} | ||
|
||
{% block body %} | ||
fellows directory | ||
<div class="row"> | ||
<div class="col-md-12 col-lg-9"> | ||
<div class="mb-4"> | ||
<h1 class="h1-white">Fellows Directory</h1> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div id="fellows-directory-featured-fellows"></div> | ||
{% endblock %} |
27 changes: 27 additions & 0 deletions
27
network-api/networkapi/fellows/templates/fellows_directory_type.html
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 @@ | ||
{% extends "fellowships-base.html" %} | ||
|
||
{% block template_id %}fellows-directory-{{type|slugify}}{% endblock %} | ||
|
||
{% block body %} | ||
<div id="fellowship-breadcrumb"> | ||
<ol class="breadcrumb"> | ||
<li class="breadcrumb-item small-gray"> | ||
<a href="{% url 'fellowships-directory' %}" class="small-gray">Directory</a> | ||
</li> | ||
<li class="breadcrumb-item small-gray active text-capitalize"> | ||
{{ type }} Fellows | ||
</li> | ||
</ol> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="mb-4"> | ||
<h1 class="h1-white text-capitalize">{{ type }} Fellows</h1> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div id="fellows-directory-fellows-by-type" data-type="{{type}}"> | ||
</div> | ||
{% endblock %} |
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
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,5 +1,5 @@ | ||
#multipage-nav-mobile { | ||
background: #f2f2f2; | ||
background: $off-white; | ||
|
||
.multipage-nav { | ||
div:first-child { | ||
|
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
Oops, something went wrong.