|
| 1 | +--- |
| 2 | +layout: page |
| 3 | +title: REU Projects |
| 4 | +show_sidebar: false |
| 5 | +hide_footer: false |
| 6 | +permalink: /reu/ |
| 7 | +--- |
| 8 | + |
| 9 | +<div class="team"> |
| 10 | + |
| 11 | +<h2>Research Experiences for Undergraduates</h2> |
| 12 | +<p> |
| 13 | +The REU program at CMU allows for undergraduate students to gain experience in research methods and practices. |
| 14 | +Students work on projects throughout the summer with a graduate student advisor. |
| 15 | +Any undergraduate who is interested in working with SoDA may apply through the |
| 16 | +<a href="https://www.cmu.edu/scs/s3d/reuse/">REUSE application</a>. |
| 17 | +</p> |
| 18 | + |
| 19 | +<h2>Projects</h2> |
| 20 | + |
| 21 | +{% assign current_year = 2026 %} |
| 22 | +{% assign years = site.reu | map: "year" | uniq | sort | reverse %} |
| 23 | + |
| 24 | +{% for y in years %} |
| 25 | + {% if y == current_year %} |
| 26 | + <h3>Current Projects</h3> |
| 27 | + {% else %} |
| 28 | + <h3>Summer {{ y }}</h3> |
| 29 | + {% endif %} |
| 30 | + |
| 31 | + <div class="team-members"> |
| 32 | + {% assign projects = site.reu | where: "year", y %} |
| 33 | + {% for project in projects %} |
| 34 | + <a href="{{ project.url | relative_url }}" class="team-member-link"> |
| 35 | + <div class="team-member"> |
| 36 | + <img src="{{ project.image | relative_url }}" alt="{{ project.title }}" style="width:100%;"> |
| 37 | + <div class="container"> |
| 38 | + <h4><b>{{ project.title }}</b></h4> |
| 39 | + <p><strong>Mentor:</strong> {{ project.mentor }}</p> |
| 40 | + {% if project.student %} |
| 41 | + <p><strong>Student:</strong> {{ project.student }}</p> |
| 42 | + {% endif %} |
| 43 | + <p>{{ project.description | truncatewords: 25 }}</p> |
| 44 | + {% if project.project_link %} |
| 45 | + <a href="{{ project.project_link }}" target="_blank" class="project-link-button">View Project</a> |
| 46 | + {% endif %} |
| 47 | + </div> |
| 48 | + </div> |
| 49 | + </a> |
| 50 | + {% endfor %} |
| 51 | + </div> |
| 52 | +{% endfor %} |
| 53 | + |
| 54 | +</div> |
| 55 | + |
| 56 | +<style> |
| 57 | +.team-members { |
| 58 | + display: flex; |
| 59 | + flex-wrap: wrap; |
| 60 | + justify-content: flex-start; |
| 61 | +} |
| 62 | +.team-member-link { |
| 63 | + text-decoration: none; |
| 64 | + color: inherit; |
| 65 | +} |
| 66 | +.team-member { |
| 67 | + margin: 10px; |
| 68 | + box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); |
| 69 | + transition: 0.3s; |
| 70 | + width: 280px; |
| 71 | +} |
| 72 | +.team-member:hover { |
| 73 | + box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); |
| 74 | +} |
| 75 | +.container { |
| 76 | + padding: 2px 16px; |
| 77 | +} |
| 78 | +.project-link-button { |
| 79 | + display: inline-block; |
| 80 | + margin-top: 8px; |
| 81 | + padding: 6px 12px; |
| 82 | + background-color: #3273dc; |
| 83 | + color: white; |
| 84 | + border-radius: 4px; |
| 85 | + text-decoration: none; |
| 86 | + font-size: 0.9em; |
| 87 | +} |
| 88 | +.project-link-button:hover { |
| 89 | + background-color: #275aa8; |
| 90 | +} |
| 91 | +</style> |
0 commit comments