Skip to content

Commit 73f74c4

Browse files
committed
fix small issues
1 parent e0c0834 commit 73f74c4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

pages/opportunities/templates/candidate-proposal/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Instructions:
1717
the square brackets [ and ] themselves.
1818
```
1919

20-
```
20+
```md
2121
# [Project Proposal Name]
2222

2323
## Candidate Info

pages/opportunities/templates/projects-ideas/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Instructions:
2020
consistency.
2121
```
2222

23-
```
23+
```md
2424
## Project Idea 1: [Project Idea 1 Title]
2525

2626
### Abstract

theme/projects.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
{% endblock header_extra%}
1010

1111
{% set colors=["", "bg-light"] %}
12+
{% set text_colors=["", "text-secondary"] %}
1213

1314
{% block content %}
1415
<section>
@@ -43,11 +44,11 @@ <h2>
4344
{{ project.name }}
4445
</a>
4546
</h2>
46-
<p>
47+
<p class="{{ text_colors[loop.index % 2] }}">
4748
<strong>Maintainer</strong>: {{ project.maintainer_name }}
4849
&lt;<a href="mailto:{{ project.maintainer_email }}">{{ project.maintainer_email }}</a>&gt;
4950
</p>
50-
<p>{{ project.description }}</p>
51+
<p class="{{ text_colors[loop.index % 2] }}">{{ project.description }}</p>
5152
</div>
5253
</div>
5354
{% endfor %}

0 commit comments

Comments
 (0)