Skip to content

Commit

Permalink
initial work for UROP section
Browse files Browse the repository at this point in the history
  • Loading branch information
lchski committed Jan 12, 2018
1 parent 0443750 commit 4e3a1c8
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ collections:
newsletters:
output: true
permalink: /hit-and-miss/:title/
findings:
output: true
permalink: /study/urop/:title/


# Build settings
Expand Down
17 changes: 17 additions & 0 deletions _findings/2018-01-11-teachers-work.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
layout: study--finding
title: 'Teacher’s work'
date: '2018-01-11 13:00:00 -0400'
published: true
---

{:h2: .f6 .ttu .tracked .mt5 .lh-title}
{:link: .dim .light-purple}
{:blockquote: .ml0 .pl4 .bl .bw3 .b--black-10 .f4}
{:blockquote__citation: .f5 .measure}
{:hr: .w-40 .mv5 .bw1 .ba .b--black-10}

Article citation:

> Danylewycz, Marta, and Alison Prentice. 1986. “Teachers’ Work: Changing Patterns and Perceptions in the Emerging School Systems of Nineteenth- and Early Twentieth-Century Central Canada.” *Labour / Le Travail* 17: 58–80. <https://doi.org/10.2307/25142593>{:link}.
{:blockquote}
24 changes: 24 additions & 0 deletions _layouts/study--finding.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
layout: study
site_section: study
---

<article>

<header>
<h1 class="f2 mb0">{{ page.title | markdownify | remove: '<p>' | remove: '</p>' }}</h1>
<p class="f5 black-70 measure-wide lh-copy">{{ page.subtitle | markdownify | remove: '<p>' | remove: '</p>' }}</p>
</header>

<div class="f3 measure lh-copy serif nested-list-item-spacing">
{{ content }}
</div>

<footer class="mt4 f6">
<p class="measure lh-copy">
Part of my research notes for <a href="/study/urop/" class="dim light-purple i">Introducing Computers in Ontario‘s Classrooms</a>,
a research project supervised by Chad Gaffield and funded by the University of Ottawa’s Undergraduate Research Opportunity Program.
</p>
</footer>

</article>
36 changes: 36 additions & 0 deletions study/urop/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
layout: study
title: Introducing Computers in Ontario’s Classrooms
---

<header>
<h1 class="f2 mb0">Introducing Computers in Ontario’s Classrooms</h1>
<p class="f5 black-70 measure-wide lh-copy">Provincial Ambitions, Teacher Preparation, and Technological Change in the 1980s</p>
</header>

<p class="f3 measure lh-copy">
I’m conducting research into how Ontario teachers shared information in preparation for the wide-scale
introduction of standardized educational computers in the 1980s and early 1990s.
</p>

<ul class="list pl0 w-50-ns mw6">
{% assign sorted_findings = (site.findings | sort: 'date') | reverse %}
{% for finding in sorted_findings %}
{% assign finding_item_classes = 'b--black-20 pb2' %}
{% if forloop.last != true %}
{% assign finding_item_classes = finding_item_classes | append: ' bw1 bb' %}
{% endif %}
<li class="{{ finding_item_classes }}">
<h2 class="f4 mb0 lh-title"><a class="link dim light-purple" href="{{ finding.url }}">{{ finding.title }}</a></h2>
<p class="f6 black-70 mt2">{{ finding.subtitle }} <span class="i">({{ finding.date | date: '%B ~%dth, %Y' | replace: '~0', '' | replace: '~', '' | replace: '1th', '1st' | replace: '2th', '2nd' | replace: '3th', '3rd' | replace: '11st', '11th' | replace: '12nd', '12th' | replace: '13rd', '13th' }})</span></p>
</li>
{% endfor %}
</ul>

<footer class="mt4 f6 black-70 w-50-ns mw6">
<p class="lh-copy measure">
Many thanks both to my supervisor, <a href="https://chadgaffield.com" class="dim light-purple">Chad Gaffield</a>, and
uOttawa’s <a href="https://research.uottawa.ca/urop/undergrad-research-opportunity" class="dim light-purple">Undergraduate Research Opportunity Program</a>,
without whom I would not be able to do this work.
</p>
</footer>

0 comments on commit 4e3a1c8

Please sign in to comment.