-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Created linking from hours to coords and modified the coords layout #125
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,30 +10,35 @@ <h2>Coordinators</h2> | |
|
||
<p>These are the people responsible for the daily operation and maintenance of the UPL. If you have any questions email us at: <a href="http://www.google.com/recaptcha/mailhide/d?k=01enlvO279JKQY5RDqwSAZng==&c=27tAYEUKmtum-50yZuZ4fT4un5toOiloDmEWiGfH0go=" onclick="window.open('http://www.google.com/recaptcha/mailhide/d?k\07501enlvO279JKQY5RDqwSAZng\75\75\46c\07527tAYEUKmtum-50yZuZ4fT4un5toOiloDmEWiGfH0go\075', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">u...</a>@cs.wisc.edu.</p> | ||
|
||
<ul class="coords-list"> | ||
<!-- <ul class="coords-list"> --> | ||
{% assign coords = site.data.coords | sort: 'name' %} | ||
{% for coord in coords %} | ||
<li> | ||
{% assign photo = coord.photo || 'default.png' %} | ||
<div class="coord-mug"><img title="{{coord.name}}" src="{{'images/coords/' | append: photo | prepend: site.baseurl }}" /></div> | ||
<h4>{{ coord.name }}</h4> | ||
<div class="coord-info"> | ||
<p> | ||
{{ coord.year }} majoring in {{ coord.major }} | ||
<br /> | ||
{% if coord.emoji %} | ||
<p>Favorite emoji: | ||
<img class="emoji" title=":{{ coord.emoji }}:" alt=":{{ coord.emoji }}:" src="https://assets-cdn.github.com/images/icons/emoji/{{coord.emoji}}.png" height="20" width="20" align="absmiddle" /> | ||
</p> | ||
{% endif %} | ||
{% if coord.github %} | ||
<a title="{{ coord.name }}: GitHub" href="{{ coord.github }}">GitHub</a> | ||
{% endif %} | ||
{% if coord.website %} | ||
<a title="{{ coord.name }}: Website" href="{{ coord.website }}">Website</a> | ||
{% endif %} | ||
</p> | ||
</div> | ||
</li> | ||
|
||
<ul class="coords-list" id="{{ coord.name }}"> | ||
<li> | ||
{% assign photo = coord.photo || 'default.png' %} | ||
<div><a href="#{{ coord.name }}"></a></div> | ||
<div class="coord-mug"><img title="{{coord.name}}" src="{{'images/coords/' | append: photo | prepend: site.baseurl }}" /></div> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Put a line break in here somewhere. |
||
<h4>{{ coord.name }}</h4> | ||
<div class="coord-info"> | ||
<p> | ||
{{ coord.year }} majoring in {{ coord.major }} | ||
<br /> | ||
{% if coord.emoji %} | ||
<p>Favorite emoji: | ||
<img class="emoji" title=":{{ coord.emoji }}:" alt=":{{ coord.emoji }}:" src="https://assets-cdn.github.com/images/icons/emoji/{{coord.emoji}}.png" height="20" width="20" align="absmiddle" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here too. Attributes should be able to be across multiple lines. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Basically, 80 character limit please 😸 |
||
</p> | ||
{% endif %} | ||
{% if coord.github %} | ||
<a title="{{ coord.name }}: GitHub" href="{{ coord.github }}">GitHub</a> | ||
{% endif %} | ||
{% if coord.website %} | ||
<a title="{{ coord.name }}: Website" href="{{ coord.website }}">Website</a> | ||
{% endif %} | ||
</p> | ||
</div> | ||
</li> | ||
</ul> | ||
|
||
{% endfor %} | ||
</ul> | ||
<!-- </ul> --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove commented code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Never mind.