Skip to content

Commit ecdf1c6

Browse files
committed
Improve linking to teams page/slack/github
1 parent 8aac195 commit ecdf1c6

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

templates/page.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ <h2>{{ page.title }}</h2>
77
<p class="subtext">{{ page.description }}</p>
88
<span>
99
{% if page.date %}{{ page.date | format_timestamp }} &bull;{% endif %}
10-
{% if page.authors %}by {{ page.authors }}{% endif %}
10+
{% if page.authors %}
11+
by
12+
{% set author_list = page.authors.split(', ') %}
13+
{% for author in author_list %}
14+
<a href="{{ url_for('team') }}">{{ author }}</a>{% if not loop.last %}, {% endif %}
15+
{% endfor %}
16+
{% endif %}
1117
</span>
1218
</div>
1319
<br>

templates/team.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ <h3 style="margin: 1.5em 0 1em 0">Get in Touch</h3>
3131
<span>
3232
We're excited about future work on CodeClash!
3333
Have suggestions or ideas? Please open an issue or pull request on our
34-
<a href="https://github.com/CodeClash-ai/CodeClash">GitHub repository</a>.
34+
<a href="https://github.com/codeclash-ai/codeclash">GitHub repository</a>.
35+
We're also happy to see you in our <a href="https://join.slack.com/t/swe-bench/shared_invite/zt-36pj9bu5s-o3_yXPZbaH2wVnxnss1EkQ">Slack channel</a>!
3536
<br><br>
3637
You can also email
3738
{<a href="mailto:johnby@stanford.edu">johnby@stanford.edu</a>,

0 commit comments

Comments
 (0)