acbart

Untitled

Sep 27th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.69 KB | None | 0 0
  1. <div class="row">
  2.     <div class="span2">
  3.         <img src="{image}" alt="{First}{Last}" style="margin: 0 10px 10px 10px;">
  4.     </div>
  5.     <div class="span10">
  6.         <h1>{Last}, {First}</h1>
  7.         <p><strong>Contact</strong>: {PID}@cs.vt.edu.</p>
  8.         <p>{bio}</p>
  9.     </div>  <!-- span10 -->
  10. </div>  <!-- row -->
  11. <div class="row">
  12.     <div class="span12">
  13.    
  14.     <h2>Academics</h2>
  15.  
  16.     <p><strong>Degree</strong>: {degree}
  17.  
  18.     <!-- Potential format is /[FS]\d\d/. So "F12" -> "Fall 2012". -->
  19.     <p><strong>Expected Graduation</strong>: {graduation}</p>
  20.  
  21.     <!-- I doubt we'll be able to link to actual pages, unless we want students to optionally specify a url. -->
  22.     <p><strong>Other Degrees In-progress</strong>:<ul>
  23.         <li>{other_degree}</li>
  24.         <li>{other_degree}</li>
  25.     </ul></p>
  26.  
  27.     <!-- E.g. "BS at University of Delaware", "MS at Georgia Tech". -->
  28.     <p><strong>Complete Degrees</strong>:<ul>
  29.         <li>{completed_degree}</li>
  30.         <li>{completed_degree}</li>
  31.     </ul></p>
  32.                  
  33.     </div>
  34.     <div class="span6">
  35.    
  36.     <h2>Research</h2>
  37.  
  38.     <!-- "Advisers" should be conditionally pluralized. Links to their user page on the CS website and looks up their names in a table. -->
  39.     <p><strong>Advisers</strong>: <a href="http://www.cs.vt.edu/user/{adviser}">{adviser}</a>, <a href="http://www.cs.vt.edu/user/{adviser}">{adviser}</a></p>
  40.  
  41.     <!-- If students only have one desk, shouldn't be a list. -->
  42.     <p><strong>Desks</strong>:<ul>
  43.         <li>{desk}</li>
  44.         <li>{desk}</li>
  45.     </ul></p>
  46.  
  47.     <!-- Ideally, students should use common keywords. They can then be used to search for other students with similar keywords. -->
  48.     <p><strong>Interests</strong>: <a href="http://gradcouncil.cs.vt.edu/search?interest={interest}"><span class="label label-info">{interest}</span></a>,
  49.                   <a href="http://gradcouncil.cs.vt.edu/search?interest={interest}"><span class="label label-info">{interest}</span></a></p>
  50.  
  51.     <!-- Ideally, students should use common keywords. They can then be used to search for other students with similar keywords. -->
  52.     <p><strong>Skills</strong>: <a href="http://gradcouncil.cs.vt.edu/search?skill={skill}"><span class="label label-success">{skill}</span></a>,
  53.                   <a href="http://gradcouncil.cs.vt.edu/search?skill={skill}"><span class="label label-success">{skill}</span></a></p>
  54.  
  55.     <h2>Demographic</h2>
  56.  
  57.     <!-- Needs to be a string, not just a binary option! -->
  58.     <p><strong>Gender</strong>: {gender}</p>
  59.  
  60.     <!-- Should be geocode-able. -->
  61.     <p><strong>From</strong>: {origin}</p>
  62.  
  63.     </div><!-- span12 -->
  64.                
  65. </div>  <!-- row -->
Advertisement
Add Comment
Please, Sign In to add comment