Skip to content

Instantly share code, notes, and snippets.

@wvuwebgist
Created January 15, 2021 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wvuwebgist/acd998c58c274089a0b8dc293338ec8d to your computer and use it in GitHub Desktop.
Save wvuwebgist/acd998c58c274089a0b8dc293338ec8d to your computer and use it in GitHub Desktop.
A Profile Individual template for CleanSlate CMS written in Liquid.
---
layout: default
---
<div class="wvu-container">
<div id="maincontent" class="main">
<h1 class="wvu-profile__name">
{% editable_region_block name: "wvu-profile__name" type: "simple" %}
{{ page.name }}
{% endeditable_region_block %}
</h1>
<div class="wvu-profile__meta-info">
<h2 class="wvu-profile__job-title wvu-h5">
{% editable_region_block name: "wvu-profile__job-title" type: "simple" %}
Enter the person's job title or whatever subhead should go under their name.
{% endeditable_region_block %}
</h2>
</div> <!-- /.wvu-profile__meta-info -->
<p>
{% editable_region_block name: "wvu-profile__short-description" type: "simple" %}
Enter a brief description of the person. This will be pulled into the profile index page(s). Only enter a sentence or two in this region.
{% endeditable_region_block %}
</p>
{% editable_region_block name: "main" %}
<p>Enter the extended description here.</p>
{% endeditable_region_block %}
</div><!-- /.main -->
<aside class="wvu-sidebar">
<div class="wvu-profile__photo">
{% editable_region_block name: "wvu-profile__photo" %}
Add a profile photo.
{% endeditable_region_block %}
</div> <!-- /.wvu-profile__photo -->
<div class="wvu-profile__meta-info">
<p>
{% editable_region_block name: "wvu-profile__phone" type: "simple" %}
Enter the person's phone number.
{% endeditable_region_block %}
</p>
<p>
{% editable_region_block name: "wvu-profile__email" %}
Enter the person's email address and link it via "Standard Links" option in the Insert Link modal.
{% endeditable_region_block %}
</p>
</div> <!-- /.wvu-profile__meta-info -->
</aside>
</div> <!-- /.wvu-container -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment