-
Notifications
You must be signed in to change notification settings - Fork 12
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
Speakers new layout #251
base: master
Are you sure you want to change the base?
Speakers new layout #251
Conversation
duncanphillips
commented
Jan 11, 2017
<b>{{ speaker.name }}</b><br/> | ||
{{ speaker.company}} | ||
</p> | ||
<a href="/speakers/{{ speaker.year }}#{{ speaker.name | slugify }}"> |
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.
speakers on home page are now linked properly
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.
The code itself is fine, but I don't like the layout in general. I've submitted a pull-request onto this branch with what I think are some improvements - see what you think, change them if you want?
<p> {{ speaker.bio }} </p> | ||
<div class="row nested-row"> | ||
<div class="col-md-offset-1 col-md-11"> | ||
<p> {{ speaker.bio }} </p> |
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.
Can we move the speaker bio below the abstract? The abstract is the important thing here - people are here for the talks, not to learn about the speakers lives.
<p>The title of the talk is <i>"{{ speaker.title }}"</i>.</p> | ||
<div class="row nested-row"> | ||
<div class="col-md-offset-1 col-md-11"> | ||
<p>The title of the talk is <i>"{{ speaker.title }}"</i>.</p> |
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.
This is weird. "The title of the talk is X". Can we make it look like a title, and put it with the abstract in a more prominent position? This page is basically listing the talks with their titles and abstracts, so it should look more like it.
{% for speaker in page_speakers %} | ||
<div id='{{ speaker.name | slugify }}'> | ||
<div class="row text-center"> | ||
<h2>{{ speaker.name }}</h2> |
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.
These names are huge. Again, could we make the talk title bigger and more titley, maybe combine them with the name here?