-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
99 lines (92 loc) · 2.72 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
---
layout: default
title: PowerPointLabs
overview: true
---
<div class="container">
<div class="jumbotron row">
<div class="col-xs-6 text-center">
<h1 class="intro-title">
PowerPoint supercharged.
</h1>
<p>
Impressive presentations made easy.
</p>
<p>
<a class="btn btn-lg btn-success" href="https://docs.google.com/forms/d/19R9StG_Zoj9XabdCpiNgXpiKhXNrloxmBfW9VNFh1aY/viewform">
Grab it while it's free.
</a>
</p>
<p>
<small>For PowerPoint 2010, 2013 and 2016 on Windows.</small>
<br>
<small>(Not compatible with Mac OS X)</small>
</p>
</div>
<div class="col-xs-4">
<iframe width="420" height="315" src="//www.youtube.com/embed/ZXghzEF-DfI" frameborder="0" allowfullscreen></iframe>
</div>
<div class="row col-xs-10 col-xs-offset-1">
<div>
<p id="user-count-row" align="center">
<span id= "user-count-numbers-row">
100,000+
</span>
have benefited from PowerPointLabs so far...
</p>
</div>
<div>
<img src="{{ site.baseurl }}/img/quote-open.png" align="left"/>
</div>
<div>
<img src="{{ site.baseurl }}/img/quote-close.png" align="right"/>
</div>
<br />
<div>
<p id="testimonial-row">
</p>
</div>
</div>
</div>
<div class="row col-xs-10 col-xs-offset-1">
<p>
The typical PowerPoint presentation isn't very interesting. Walls of text or bullet points, with few visuals - it's no wonder audiences find it hard to pay attention.
</p>
<p>
Your slides don't have to be this way, and it doesn't take a whole lot of effort to make them better.
</p>
<p>
PowerPointLabs is an <a href="https://github.com/PowerPointLabs/PowerPointLabs"><strong>open source project</strong></a> based in the <a href="https://www.comp.nus.edu.sg/">National University of Singapore</a>. It makes creating engaging PowerPoint presentations easy. <strong>Check out what it can do for you below.</strong>
</p>
<hr />
</div>
<div class="row col-xs-10 col-xs-offset-1 feature-grid">
{% for feature in site.data.features %}
<div class="row col-xs-offset-1">
{% capture remainder %}{{ forloop.index | modulo:2 }}{% endcapture %}
{% if remainder == '1' %}
<div class="col-xs-3">
<img src="{{ site.baseurl }}{{feature.img}}">
</div>
{% endif %}
<div class="col-xs-7">
<h3>{{feature.tagline}}</h3>
<p>
{{feature.description}}
{% if feature.url %}
<a href="{{ site.baseurl }}{{feature.url}}">[More]</a>
{% else %}
[Coming Soon]
{% endif %}
</p>
</div>
{% if remainder == '0' %}
<div class="col-xs-3">
<img src="{{ site.baseurl }}{{feature.img}}">
</div>
{% endif %}
</div>
{% endfor %}
</div>
</div>
<script src="{{ site.baseurl }}/js/index.js"></script>