Skip to content

Commit 9a0cdf2

Browse files
committed
TigerOS Project Page
1 parent 9fa1ca9 commit 9a0cdf2

7 files changed

+65
-0
lines changed
+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
layout: default
3+
title: TigerOS
4+
permalink: /tigeros
5+
authors:
6+
- Christian Martin (@ctmartin)
7+
- Tim Zabel (@tjzabel)
8+
- Aidan Kahrs (@axk4545)
9+
images:
10+
- /projects/assets/tigeros/tigeros_orange_background.png
11+
- /projects/assets/tigeros/tigeros_postinstall.png
12+
- /projects/assets/tigeros/tigeros_tweaks.png
13+
- /projects/assets/tigeros/tigeros_website.png
14+
- /projects/assets/tigeros/tigeros_dark.png
15+
---
16+
<h1 class="sr-only">TigerOS</h1>
17+
<img src="/projects/assets/tigeros/tigeros_banner.png" class="w-100" alt="banner with mascot" style="margin-bottom:1.2em;" />
18+
<article class="container">
19+
<section id="about" class="container row">
20+
<div class="col-12 col-md-9" style="margin-bottom:1.2em;">
21+
<h2>What is TigerOS?</h2>
22+
<p>TigerOS is a Fedora Remix that beautifully utilizes Linux to meet the demands of RIT students and faculty.</p>
23+
<p>Join the conversation! Find us in <a href="https://webchat.freenode.net/?channels=rit-tigeros"><code>#rit-tigeros</code></a> on IRC for development discussions and support.</p>
24+
<a href="https://github.com/RITlug/TigerOS" class="btn btn-lg btn-primary">Find on GitHub</a>
25+
</div>
26+
<div class="col-12 col-md-3" style="margin-bottom:1.2em;">
27+
<h2>Download</h2>
28+
<p>A fast and free alternative to macOS and Windows.</p>
29+
<a href="https://mirrors.ritlug.com/TigerOS/" class="btn btn-lg btn-primary">Download</a>
30+
</div>
31+
</section>
32+
<section id="screenshots" class="container row">
33+
<div id="carouselIndicators" class="col-12 carousel slide" data-ride="carousel">
34+
<ol class="carousel-indicators">
35+
{% assign slideNum = 0 %}
36+
{% for image in page.images %}
37+
{% if image == page.images.first %}
38+
<li data-target="#carouselIndicators" data-slide-to="{% increment slideNum %}" class="active"></li>
39+
{% else %}
40+
<li data-target="#carouselIndicators" data-slide-to="{% increment slideNum %}"></li>
41+
{% endif %}
42+
{% endfor %}
43+
</ol>
44+
<div class="carousel-inner">
45+
{% for image in page.images %}
46+
{% if image == page.images.first %}
47+
<div class="carousel-item active">
48+
{% else %}
49+
<div class="carousel-item">
50+
{% endif %}
51+
<img class="d-block w-100" src="{{ image }}" />
52+
</div>
53+
{% endfor %}
54+
</div>
55+
<a class="carousel-control-prev" href="#carouselIndicators" role="button" data-slide="prev">
56+
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
57+
<span class="sr-only">Previous</span>
58+
</a>
59+
<a class="carousel-control-next" href="#carouselIndicators" role="button" data-slide="next">
60+
<span class="carousel-control-next-icon" aria-hidden="true"></span>
61+
<span class="sr-only">Next</span>
62+
</a>
63+
</div>
64+
</section>
65+
</article>
767 KB
Loading
61.3 KB
Loading
Loading
1.24 MB
Loading
948 KB
Loading
535 KB
Loading

0 commit comments

Comments
 (0)