Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • wcms/uw_wcms_ohana
1 result
Show changes
Commits on Source (4)
......@@ -36,16 +36,32 @@
<h2>Biography</h2>
<div>{{ ofis_data.profile.profile_bio | striptags('<a>') | raw | nl2br }}</div>
{% endif %}
{% if ofis_data.profile.research %}
{% if ofis_data.profile.research_keywords %}
<h2>Research Interests</h2>
<div>
<ul>
{% for research in ofis_data.profile.research %}
<li>{{ research | striptags('<a>') | raw }}</li>
{% for research_keywords in ofis_data.profile.research_keywords %}
<li>{{ research_keywords | striptags('<a>') | raw }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% if ofis_data.profile.scholarly %}
<h2>Scholarly Research</h2>
<div>
{% for scholarly in ofis_data.profile.scholarly %}
{{ scholarly | striptags('<a>') | raw | nl2br }}
{% endfor %}
</div>
{% endif %}
{% if ofis_data.profile.industrial %}
<h2>Industrial Research</h2>
<div>
{% for industrial in ofis_data.profile.industrial %}
{{ industrial | striptags('<a>') | raw | nl2br }}
{% endfor %}
</div>
{% endif %}
{% if ofis_data.profile.education %}
<h2>Education</h2>
<div>
......@@ -86,13 +102,10 @@
</ul>
</div>
{% endif %}
{% if ofis_data.profile.outreach or ofis_data.profile.affiliations %}
<h2>Volunteer Work</h2>
{% if ofis_data.profile.affiliations %}
<h2>Affiliations and Volunteer Work</h2>
<div>
<ul>
{% for outreach in ofis_data.profile.outreach %}
<li>{{ outreach | striptags('<a>') | raw }}</li>
{% endfor %}
{% for affiliations in ofis_data.profile.affiliations %}
<li>{{ affiliations | striptags('<a>') | raw }}</li>
{% endfor %}
......
......@@ -39,7 +39,6 @@ ofis_data:
digital_assets:
- "[https://www.youtube.com/watch?v=keafOe4b3ko](https://www.youtube.com/watch?v=keafOe4b3ko)"
- "[https://www.thestar.com/opinion/contributors/2022/08/16/canadas-investments-in-tech-entrepreneurship-are-paying-off-and-we-need-to-keep-up-the-momentum.html](https://www.thestar.com/opinion/contributors/2022/08/16/canadas-investments-in-tech-entrepreneurship-are-paying-off-and-we-need-to-keep-up-the-momentum.html)"
outreach: []
affiliations:
- Affiliations
- Volunteer work
......
......@@ -22,6 +22,8 @@ ofis_data:
phones: '519-888-1234 x12345, 519-888-1234 x23456'
fax: '519-888-4321'
research_interests: 'Main research interests are in text information retrieval (IR), concerned with the organization and access to unstructured textual information. My first stream of research deals with developing new methods of retrieving documents based on statistical and linguistic text processing techniques.'
scholarly_research: 'Scholarly research'
industrial_research: 'Industrial research'
brief_research_interests: 'Information retrieval; natural language processing; information extraction; artificial intelligence; machine learning'
bio: 'Jane Doe, PhD, PEng is currently Dean of the Faculty of Engineering at the University of Waterloo and is the ninth dean since the Faculty was founded in 1957. She was previously Dean of the College of Engineering and Physical Sciences at the University of Guelph (2017 to 2020).\r\n\r\nPrior to her time in Guelph, Wells was a professor of mechanical and mechatronics engineering at Waterloo for 10 years. She received awards for graduate supervision from both the Faculty and the University in 2017.\r\n\r\nAn accomplished materials engineer, Wells also served as the Associate Dean of Outreach for Waterloo Engineering between 2008 and 2017, and chaired its Women in Engineering committee for many years. She chaired the Ontario Network of Women in Engineering from 2013 to 2018.\r\n\r\nWells began her academic career as a professor in materials engineering at the University of British Columbia from 1996 to 2007, and has worked in the steel industry in Canada and internationally.\r\n\r\nThe co-author of two books including one on Canadian women innovators and the second on Canadian women in materials, her research focuses on the relationship between processing, structure and properties for advanced metallic alloys used in the transportation sector.\r\n\r\nWells is not currently accepting applications to supervise new graduate students.'
picture: 'janedoe.png'
......