Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-06-18 07:06:48

0001 {% comment %}
0002   Advertising box at the top of a workshop website home page.
0003 {% endcomment %}
0004 <div class="jumbotron">
0005   <div class="row">
0006     <div class="col-md-10 col-md-offset-1">
0007       <h2>{{page.venue}}</h2>
0008       <div class="row">
0009         <div class="col-md-6">
0010           <p>{{page.humandate}}</p>
0011           <p>{% if page.humantime %}{{page.humantime}}{% endif %}</p>
0012         </div>
0013         <div class="col-md-6">
0014           <p>
0015           <strong>Instructors:</strong>
0016           {% if page.instructor %}
0017           {{page.instructor | join: ', ' %}}
0018           {% else %}
0019           to be announced.
0020           {% endif %}
0021           </p>
0022           {% if page.helper %}
0023           <p>
0024           <strong>Helpers:</strong>
0025           {{page.helper | join: ', ' %}}
0026           </p>
0027           {% endif %}
0028         </div>
0029       </div>
0030     </div>
0031   </div>
0032 </div>