forked from ubcchemecar/ubcchemecar.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
980 lines (690 loc) · 40.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>UBC Chem-E-Car: The University of British Columbia</title>
<meta name="author" content="" />
<meta name="keywords" content="">
<meta name="generator" content="Hugo 0.17" />
<link href='//fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,500,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link href="http://www.ubcchemecar.com/css/animate.css" rel="stylesheet">
<link href="http://www.ubcchemecar.com/css/style.default.css" rel="stylesheet" id="theme-stylesheet">
<link href="http://www.ubcchemecar.com/css/custom.css" rel="stylesheet">
<link rel="shortcut icon" href="http://www.ubcchemecar.com/img/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="http://www.ubcchemecar.com/img/apple-touch-icon.png" />
<link href="http://www.ubcchemecar.com/css/owl.carousel.css" rel="stylesheet">
<link href="http://www.ubcchemecar.com/css/owl.theme.css" rel="stylesheet">
<link rel="alternate" href="http://www.ubcchemecar.com/index.xml" type="application/rss+xml" title="UBC Chem-E-Car: The University of British Columbia">
<meta property="og:title" content="UBC Chem-E-Car: The University of British Columbia" />
<meta property="og:type" content="website" />
<meta property="og:url" content="//" />
<meta property="og:image" content="img/logo2.png" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
</head>
<body>
<div id="all">
<header>
<div class="navbar-affixed-top" data-spy="affix" data-offset-top="200">
<div class="navbar navbar-default yamm" role="navigation" id="navbar">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand home" href="http://www.ubcchemecar.com/">
<img src="http://www.ubcchemecar.com/img/logo.png" alt="UBC Chem-E-Car: The University of British Columbia logo" class="hidden-xs hidden-sm">
<img src="http://www.ubcchemecar.com/img/logo-small.png" alt="UBC Chem-E-Car: The University of British Columbia logo" class="visible-xs visible-sm">
<span class="sr-only">UBC Chem-E-Car: The University of British Columbia - go to homepage</span>
</a>
<div class="navbar-buttons">
<button type="button" class="navbar-toggle btn-template-main" data-toggle="collapse" data-target="#navigation">
<span class="sr-only">Toggle navigation</span>
<i class="fa fa-align-justify"></i>
</button>
</div>
</div>
<div class="navbar-collapse collapse" id="navigation">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="http://www.ubcchemecar.com/">Home</a>
</li>
<li class="dropdown">
<a href="http://www.ubcchemecar.com/blog/">Blog</a>
</li>
<li class="dropdown">
<a href="http://www.ubcchemecar.com/sponsors/">Sponsors</a>
</li>
<li class="dropdown">
<a href="http://www.ubcchemecar.com/infopack/">Recruitment</a>
</li>
<li class="dropdown">
<a href="http://www.ubcchemecar.com/team/">Team</a>
</li>
<li class="dropdown">
<a href="http://www.ubcchemecar.com/contact/">Contact</a>
</li>
</ul>
</div>
<div class="collapse clearfix" id="search">
<form class="navbar-form" role="search">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search">
<span class="input-group-btn">
<button type="submit" class="btn btn-template-main"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</div>
</div>
</div>
</div>
</header>
<section>
<div class="home-carousel">
<div class="dark-mask"></div>
<div class="container">
<div class="homepage owl-carousel">
<div class="item">
<div class="row">
<div class="col-sm-5 right">
<h1>Door's Always Open</h1>
<ul class="list-style-none">
<li>Hey you! Yeah, you!</li>
<li>We're always looking for enthusiastic UBC students of all backgrounds and experiences to join us.</li>
<li>Read the infopack and sign up today!</li>
</ul> <br /> <a href="./infopack" class="btn btn-primary" role="button">New Members Infopack</a> <br />
</div>
<div class="col-sm-7">
<img class="img-responsive" src="img/carousel/recruiting.png" alt="">
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-sm-5 right">
<h1>Sponsorship Opportunities</h1>
<ul class="list-style-none">
<li>Support UBC student development!</li>
<li>We offer attractive sponsorship deals with cool benefits</li>
</ul>
<br /> <a href="./sponsors" class="btn btn-primary" role="button">Sponsor Us</a> <br />
</div>
<div class="col-sm-7">
<img class="img-responsive" src="img/carousel/sponsorship.png" alt="">
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-sm-5 right">
<h1>Chem-E-Car + </h1>
<p>We are also working on: </p> <ul class="list-style-none">
<li>The 2017 AIChE App Competition</li>
<li>Zinc-Nickel Flow Cells</li>
<li>And more!!</li>
</ul>
</div>
<div class="col-sm-7">
<img class="img-responsive" src="img/carousel/more.png" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bar background-white no-mb">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading text-center">
<h2>About Us</h2>
</div>
<p class="lead">
UBC Chem-E-Car represents The University of British Columbia in the annual American Institute of Chemical Engineers (AIChE) Chem-E-Car competition where we compete with other North American teams. We design, build and test a shoe-box sized car from scratch every year. The process involves building a power system (batteries, fuel cells, supercapacitors etc), selecting a stopping mechanism reaction, designing the circuitry, coding microcontrollers and assembling the mechanical components and car body.
</p>
</div>
</div>
</div>
</section>
<section class="bar background-white">
<div class="container">
<div class="text-center">
<div class="heading text-center"> <h2>Social Media!</h2> </div>
<div id="instafeed"></div>
<hr>
<div class="row">
<div class="col-lg-4 col-xs-12">
<div class="heading"><h4>Facebook Page</h4></div>
<div class="fb-page" data-href="https://www.facebook.com/ubcchemecar" data-tabs="timeline" data-small-header="true" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><blockquote cite="https://www.facebook.com/ubcchemecar" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/ubcchemecar">UBC Chem-E-Car</a></blockquote></div>
<hr>
</div>
<div class="col-lg-8 col-xs-12">
<div class="heading hidden-xs"><h4>Team Photos</h4>
<p><a class="embedly-card" data-card-type="article-full" href="https://www.flickr.com/photos/143007980@N05/">UBC Chem-E-Car</a></p></div>
<div class="heading"><h4>Channels</h4></div>
<h3>
<a href="https://www.facebook.com/UbcChemECar"><i class="fa fa-2x fa-facebook-square"></i></a>
<a href="https://instagram.com/ubcchemecar"><i class="fa fa-2x fa-instagram"></i></a>
<a href="https://twitter.com/ubcchemecar"><i class="fa fa-2x fa-twitter-square"></i></a>
<a href="https://github.com/ubcchemecar/"><i class="fa fa-2x fa-github-square"></i></a>
<a href="https://www.linkedin.com/company/ubc-chem-e-car"><i class="fa fa-2x fa-linkedin-square"></i></a>
<a href="https://www.flickr.com/photos/143007980@N05/"><i class="fa fa-2x fa-flickr"></i></a>
</h3>
<hr>
<div class="row">
<div class="responsiveCal">
<iframe src="https://calendar.google.com/calendar/embed?title=UBC%20Chem-E-Car%20Events&src=chemecarcaptain%40gmail.com&height=600&wkst=1&bgcolor=%23FFFFFF&ctz=America%2FVancouver" style="border-width:0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="http://www.ubcchemecar.com/js/simplyscroll.min.js"></script>
<script src="http://www.ubcchemecar.com/js/instafeed.min.js"></script>
<script type="text/javascript">
(function ($) {
$(function () {
i = new Instafeed({
get: 'user',
userId: 1916181001,
clientId: '533bedde9cc84450bae1dbf7360541b1',
accessToken: '1916181001.1677ed0.a8641350606647c781b0228896ae79df',
target: "instafeed",
resolution: 'standard_resolution',
limit: 10,
after: function() {
$("#instafeed").simplyScroll({
speed: 1,
frameRate: 20,
orientation: "horizontal",
direction: "forwards",
customClass: "instagram_scroller"
});
}
});
i.run()
});
})(jQuery);
</script>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.8&appId=1753534421570626";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<script async src="//cdn.embedly.com/widgets/platform.js" charset="UTF-8"></script>
<style>
.responsiveCal {
position: relative; padding-bottom: 75%; height: 0; overflow: hidden;
}
.responsiveCal iframe {
position: absolute; top:0; left: 0; width: 100%; height: 100%;
}
.instagram_scroller {
width: 100%;
height: 210px;
position: relative;
margin-top: 70px
}
.instagram_scroller .simply-scroll-clip {
width: 100%;
height: 210px;
position: relative;
overflow: hidden
}
#instafeed {
height: 280px;
overflow: hidden;
white-space: nowrap;
text-align: left;
position: relative
}
#instafeed a {
margin-right: 30px;
vertical-align: top;
display: block;
width: 170px;
height: 210px;
float: left
}
#instafeed a:hover img {
box-shadow: 0 0 20px rgba(0, 0, 0, .4);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
#instafeed img {
width: 170px;
height: 170px;
display: block;
margin-top: 20px;
border-radius: 4px;
-webkit-transition: all 220ms ease-in-out;
-moz-transition: all 220ms ease-in-out;
-o-transition: all 220ms ease-in-out;
transition: all 220ms ease-in-out
}
@media screen and (max-width: 420px) {
.chemecarlogo {
visibility: hidden;
display: none;
}
.instagram_scroller {
height: 170px;
margin-top: 40px
}
.instagram_scroller .simply-scroll-clip {
height: 170px
}
#instafeed {
height: 210px
}
#instafeed a {
width: 130px;
height: 170px
}
#instafeed img {
width: 130px;
height: 130px
}
}
</style>
<section class="bar background-pentagon no-mb">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading text-center">
<h2>Teams</h2>
</div>
<p class="lead">
The UBC Chem-E-Car team consists of 5 main sub-teams with different roles. We have many members who work hard to make the car and all of our side projects a reality! Meet our team leads and learn more about what they do on the team.
</p>
<ul class="owl-carousel testimonials same-height-row">
<li class="item">
<div class="testimonial same-height-always">
<div class="header-text">
<h4>Administration</h4>
</div>
<div class="text">
<p>The administration team handles the day-to-day operations of the team and ensures that all projects are running smoothly.</p>
</div>
<div class="bottom">
<div class="icon"><i class="fa fa-quote-left"></i>
</div>
<div class="name-picture">
<img class="" alt="" src="http://www.ubcchemecar.com/img/team/thanos.jpg">
<h5>Thanos</h5>
<p>Team Captain</p>
</div>
</div>
</div>
</li>
<li class="item">
<div class="testimonial same-height-always">
<div class="header-text">
<h4>Battery</h4>
</div>
<div class="text">
<p>The battery team is reponsible for constructing a device that powers the car. Every year, the battery team conducts research to compile a list of interesting and feasible electrochemical reactions. After selecting a reaction, the team designs and builds the battery casing which is used in battery testing experiments. Past projects include: zinc-air batteries, magnesium-air batteries, hydrogen fuel cells and pressurized cylinders.</p>
</div>
<div class="bottom">
<div class="icon"><i class="fa fa-quote-left"></i>
</div>
<div class="name-picture">
<img class="" alt="" src="http://www.ubcchemecar.com/img/team/mani.jpg">
<h5>Mani Massah</h5>
<p>Battery Lead</p>
</div>
</div>
</div>
</li>
<li class="item">
<div class="testimonial same-height-always">
<div class="header-text">
<h4>Chemical</h4>
</div>
<div class="text">
<p>The chemical team gets to play with mystery chemicals and mix random stuff in beakers (safely of course).</p>
</div>
<div class="bottom">
<div class="icon"><i class="fa fa-quote-left"></i>
</div>
<div class="name-picture">
<img class="" alt="" src="http://www.ubcchemecar.com/img/team/andy.jpg">
<h5>Andy May</h5>
<p>Chemical Lead</p>
</div>
</div>
</div>
</li>
<li class="item">
<div class="testimonial same-height-always">
<div class="header-text">
<h4>Electrical</h4>
</div>
<div class="text">
<p>The electrical team designs the circuit which controls the motor of the car and times the chemical reaction. Every year, the electrical circuit becomes lighter and more efficient. The nationals circuit board is nearing completion and the sub-team is looking towards the coming academic year’s design.</p>
</div>
<div class="bottom">
<div class="icon"><i class="fa fa-quote-left"></i>
</div>
<div class="name-picture">
<img class="" alt="" src="http://www.ubcchemecar.com/img/team/ngaito.jpg">
<h5>Ngai To Lo</h5>
<p>Logistics Manager</p>
</div>
</div>
</div>
</li>
<li class="item">
<div class="testimonial same-height-always">
<div class="header-text">
<h4>Mechanical</h4>
</div>
<div class="text">
<p>The mechanical team conceptualizes and creates the Chem-E-Car that runs at the competition. The team collaborates with all the other sub-teams to ensure that the final product meets the requirements of the competition and the ideals of the team. The sub-team will be redesigning every part of the car for the coming national competition.</p>
</div>
<div class="bottom">
<div class="icon"><i class="fa fa-quote-left"></i>
</div>
<div class="name-picture">
<img class="" alt="" src="http://www.ubcchemecar.com/img/team/kyle.jpg">
<h5>Kyle Como</h5>
<p>Mechanical Lead</p>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="bar background-image-fixed-2 no-mb color-white text-center">
<div class="dark-mask"></div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="icon icon-lg"><i class="fa fa-users"></i>
</div>
<h3 class="text-uppercase">Get more team information</h3>
<p class="lead">Visit our team page to see all team members and view the team roster</p>
<p class="text-center">
<a href="#" class="btn btn-template-transparent-black btn-lg">Team Page</a>
</p>
</div>
</div>
</div>
</section>
<section class="bar background-white no-mb">
<div class="container">
<div class="col-md-12">
<div class="heading text-center">
<h2>Latest and Greatest</h2>
</div>
<p class="lead">
Read our articles to learn more about what we are working on. Occasionally, we also share tutorials on electrochemistry, mechanical design, software development and other fun topics that we came across.
</p>
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="box-image-text blog">
<div class="top">
<div class="image" style="overflow:hidden">
<img src="http://www.ubcchemecar.com/img/banners/banner-5.jpg" class="img-responsive" alt="" >
</div>
<div class="bg"></div>
<div class="text">
<p class="buttons">
<a href="http://www.ubcchemecar.com/blog/2015/10/10/migrate-from-jekyll/" class="btn btn-template-transparent-primary"><i class="fa fa-link"></i> Read more</a>
</p>
</div>
</div>
<div class="content">
<h4><a href="http://www.ubcchemecar.com/blog/2015/10/10/migrate-from-jekyll/">Migrate from Jekyll</a></h4>
<p class="author-category">
on October 10, 2015
</p>
<p class="intro">Move static content to static Jekyll has a rule that any directory not starting with _ will be copied as-is to the _site output. Hugo keeps all static content under static. You should therefore move it all there. With Jekyll, something that looked like
▾ <root>/ ▾ images/ logo.png should become
▾ <root>/ ▾ static/ ▾ images/ logo.png Additionally, you’ll want any files that should reside at the root (such as CNAME) to be moved to static.</p>
<p class="read-more">
<a href="http://www.ubcchemecar.com/blog/2015/10/10/migrate-from-jekyll/" class="btn btn-template-main">Continue reading</a>
</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="box-image-text blog">
<div class="top">
<div class="image" style="overflow:hidden">
<img src="http://www.ubcchemecar.com/img/banners/banner-4.jpg" class="img-responsive" alt="" >
</div>
<div class="bg"></div>
<div class="text">
<p class="buttons">
<a href="http://www.ubcchemecar.com/blog/2015/10/02/linked-post/" class="btn btn-template-transparent-primary"><i class="fa fa-link"></i> Read more</a>
</p>
</div>
</div>
<div class="content">
<h4><a href="http://www.ubcchemecar.com/blog/2015/10/02/linked-post/">Linked post</a></h4>
<p class="author-category">
By <a href="#">John Doe</a>
on October 2, 2015
</p>
<p class="intro">I’m a linked post in the menu. You can add other posts by adding the following line to the frontmatter:
menu = "main" Lorem ipsum dolor sit amet, consectetur adipiscing elit. In mauris nulla, vestibulum vel auctor sed, posuere eu lorem. Aliquam consequat augue ut accumsan mollis. Suspendisse malesuada sodales tincidunt. Vivamus sed erat ac augue bibendum porta sed id ipsum. Ut mollis mauris eget ligula sagittis cursus. Aliquam id pharetra tellus.</p>
<p class="read-more">
<a href="http://www.ubcchemecar.com/blog/2015/10/02/linked-post/" class="btn btn-template-main">Continue reading</a>
</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="box-image-text blog">
<div class="top">
<div class="image" style="overflow:hidden">
<img src="http://www.ubcchemecar.com/img/banners/banner-2.jpg" class="img-responsive" alt="" >
</div>
<div class="bg"></div>
<div class="text">
<p class="buttons">
<a href="http://www.ubcchemecar.com/blog/2015/09/17/go-is-for-lovers/" class="btn btn-template-transparent-primary"><i class="fa fa-link"></i> Read more</a>
</p>
</div>
</div>
<div class="content">
<h4><a href="http://www.ubcchemecar.com/blog/2015/09/17/go-is-for-lovers/">Go is for lovers</a></h4>
<p class="author-category">
on September 17, 2015
</p>
<p class="intro">Hugo uses the excellent go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in go templates.
This document is a brief primer on using go templates.</p>
<p class="read-more">
<a href="http://www.ubcchemecar.com/blog/2015/09/17/go-is-for-lovers/" class="btn btn-template-main">Continue reading</a>
</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="box-image-text blog">
<div class="top">
<div class="image" style="overflow:hidden">
<img src="http://www.ubcchemecar.com/img/banners/banner-3.jpg" class="img-responsive" alt="" >
</div>
<div class="bg"></div>
<div class="text">
<p class="buttons">
<a href="http://www.ubcchemecar.com/blog/2015/08/03/hugo-is-for-lovers/" class="btn btn-template-transparent-primary"><i class="fa fa-link"></i> Read more</a>
</p>
</div>
</div>
<div class="content">
<h4><a href="http://www.ubcchemecar.com/blog/2015/08/03/hugo-is-for-lovers/">Hugo is for lovers</a></h4>
<p class="author-category">
on August 3, 2015
</p>
<p class="intro">Step 1. Install Hugo Goto hugo releases and download the appropriate version for your os and architecture.
Save it somewhere specific as we will be using it in the next step.
More complete instructions are available at installing hugo
Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now.
Follow the following steps:
Clone the hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:</p>
<p class="read-more">
<a href="http://www.ubcchemecar.com/blog/2015/08/03/hugo-is-for-lovers/" class="btn btn-template-main">Continue reading</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bar background-white no-mb">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading text-center">
<h2>Our Sponsors</h2>
</div>
<p class="lead">
We'd like to thank the following organizations for their kind support and various contributions, without which this project would not have been possible. Please find more information on the great work that they do on our sponsors page.
</p>
<p class="lead">The <b>Daniel Family Foundation</b> is a philanthropic foundation that funds leading edge cancer care, fundamental research, advancements in new energy technology and bright young students. The Foundation has generously donated to support our team and will be recognized as the team's Exclusive Diamond Sponsor. We extend our special thanks for their outstanding contributions in support of UBC students.</p>
<ul class="owl-carousel customers">
<li class="item" title="Daniel Family Foundation">
<img src="img/sponsors/daniel-family-foundation.png" alt="Daniel Family Foundation" class="img-responsive" />
</li>
<li class="item" title="Precision Nanosystems">
<img src="img/sponsors/pni.jpg" alt="Precision Nanosystems" class="img-responsive" />
</li>
<li class="item" title="UBC Department of Chemical and Biological Engineering">
<img src="img/sponsors/chbe.jpg" alt="UBC Department of Chemical and Biological Engineering" class="img-responsive" />
</li>
<li class="item" title="Shell Canada">
<img src="img/sponsors/shell.jpg" alt="Shell Canada" class="img-responsive" />
</li>
<li class="item" title="Botfeeder">
<img src="img/sponsors/botfeeder.jpg" alt="Botfeeder" class="img-responsive" />
</li>
<li class="item" title="UBC Faculty of Applied Science">
<img src="img/sponsors/ubc.jpg" alt="UBC Faculty of Applied Science" class="img-responsive" />
</li>
<li class="item" title="AMS Sustainability">
<img src="img/sponsors/ams.jpg" alt="AMS Sustainability" class="img-responsive" />
</li>
<li class="item" title="FortisBC">
<img src="img/sponsors/fortisbc.jpg" alt="FortisBC" class="img-responsive" />
</li>
<li class="item" title="DigitalOcean">
<img src="img/sponsors/digitalocean.jpg" alt="DigitalOcean" class="img-responsive" />
</li>
<li class="item" title="FreeGeek">
<img src="http://www.ubcchemecar.com/img/sponsors/freegeek.jpg" alt="FreeGeek" class="img-responsive" />
</li>
<li class="item" title="MG Chemicals">
<img src="img/sponsors/mgchemicals.jpg" alt="MG Chemicals" class="img-responsive" />
</li>
<li class="item" title="ESR Electric Ltd.">
<img src="img/sponsors/esr.jpg" alt="ESR Electric Ltd." class="img-responsive" />
</li>
</ul>
</div>
</div>
</div>
</section>
<footer id="footer">
<div class="container">
<div class="col-md-4 col-sm-6">
<h4>About us</h4>
<p>UBC Chem-E-Car is a student-driven engineering team that represents the University of British Columbia in the annual AIChE Chem-E-Car competition.</p>
<p>Email Us: <b><a href="mailto:[email protected]">[email protected]</a></b></p>
<hr class="hidden-md hidden-lg hidden-sm">
</div>
<div class="col-md-4 col-sm-6">
<h4>Recent posts</h4>
<div class="blog-entries">
<div class="item same-height-row clearfix">
<div class="image same-height-always">
<a href="http://www.ubcchemecar.com/blog/2015/10/10/migrate-from-jekyll/">
<img src="http://www.ubcchemecar.com/img/banners/banner-5.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="name same-height-always">
<h5><a href="http://www.ubcchemecar.com/blog/2015/10/10/migrate-from-jekyll/">Migrate from Jekyll</a></h5>
</div>
</div>
<div class="item same-height-row clearfix">
<div class="image same-height-always">
<a href="http://www.ubcchemecar.com/blog/2015/10/02/linked-post/">
<img src="http://www.ubcchemecar.com/img/banners/banner-4.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="name same-height-always">
<h5><a href="http://www.ubcchemecar.com/blog/2015/10/02/linked-post/">Linked post</a></h5>
</div>
</div>
<div class="item same-height-row clearfix">
<div class="image same-height-always">
<a href="http://www.ubcchemecar.com/blog/2015/09/17/go-is-for-lovers/">
<img src="http://www.ubcchemecar.com/img/banners/banner-2.jpg" class="img-responsive" alt="">
</a>
</div>
<div class="name same-height-always">
<h5><a href="http://www.ubcchemecar.com/blog/2015/09/17/go-is-for-lovers/">Go is for lovers</a></h5>
</div>
</div>
</div>
<hr class="hidden-md hidden-lg">
</div>
<div class="col-md-4 col-sm-6">
<h4>Contact</h4>
<p><strong>UBC Chem-E-Car Team</strong>
<br><i>Chemical and Biological Engineering Building</i>
<br>2360 East Mall
<br>Vancouver V6T 1Z3
<br>British Columbia, <strong>Canada</strong>
</p>
<a href="http://www.ubcchemecar.com/contact" class="btn btn-small btn-template-main">Go to contact page</a>
<hr class="hidden-md hidden-lg hidden-sm">
</div>
</div>
</footer>
<div id="copyright">
<div class="container">
<div class="col-md-12">
<p class="pull-left">Copyright (C) 2016 UBC Chem-E-Car. All rights reserved.</p>
<p class="pull-right">
Template by <a href="http://bootstrapious.com/free-templates">Bootstrapious</a>.
Ported to Hugo by <a href="https://github.com/devcows/hugo-universal-theme">DevCows</a>
</p>
</div>
</div>
</div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-63367875-1', 'auto');
ga('send', 'pageview');
</script>
<script src="http://www.ubcchemecar.com/js/jquery.cookie.js"></script>
<script src="http://www.ubcchemecar.com/js/waypoints.min.js"></script>
<script src="http://www.ubcchemecar.com/js/jquery.counterup.min.js"></script>
<script src="http://www.ubcchemecar.com/js/jquery.parallax-1.1.3.js"></script>
<script src="http://www.ubcchemecar.com/js/front.js"></script>
<script src="http://www.ubcchemecar.com/js/owl.carousel.min.js"></script>
</body>
</html>