aboutsummaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2018-02-03 21:08:46 -0600
committerMatt Rude <[email protected]>2018-02-03 21:08:46 -0600
commitc5c60729062cc3d89be7447b5d330367417aa6f7 (patch)
tree74330b48908247623f48b01420d833c7feb3fab7 /index.html
parent0c0cde3923440b2d293549c7e430a38082cc0457 (diff)
downloadxmpp-site-lite-c5c60729062cc3d89be7447b5d330367417aa6f7.tar.gz
xmpp-site-lite-c5c60729062cc3d89be7447b5d330367417aa6f7.tar.bz2
xmpp-site-lite-c5c60729062cc3d89be7447b5d330367417aa6f7.zip
Update
Diffstat (limited to 'index.html')
-rw-r--r--index.html61
1 files changed, 36 insertions, 25 deletions
diff --git a/index.html b/index.html
index a1012e3..d7114b6 100644
--- a/index.html
+++ b/index.html
@@ -4,8 +4,9 @@ title: Home
permalink: /
---
+<!-- Opening Site Jumbo Tron -->
-<div class="jumbotron" style="padding-top:90px;">
+<div class="jumbotron">
<div class="container text-center">
<div class="row">
<div class="col-md-4">
@@ -18,9 +19,11 @@ permalink: /
</div>
</div>
-<div class="container offsetanchor" id="opening">
+<!-- Opening Section -->
+
+<div id="opening" class="container offsetanchor">
<div class="row">
- <div class="col-lg-7 col-md-6">
+ <div id="opening-text" class="col-lg-7 col-md-6">
<p>This is the <strong>{{ site.name }}</strong> communication service website. This site is here to provide basic
information on using this service. A <a href="{{ site.url }}/help/definitions/#xmpp-server">XMPP</a>
service provides messaging ability via a local client. XMPP sites like this service are
@@ -40,7 +43,7 @@ permalink: /
or <a href="https://chatsecure.org/">ChatSecure</a> for mobile.</p>
</div>
- <div class="col-lg-5 col-md-6 col-sm-8 col-12 float-center" style="margin:0 auto 25px;">
+ <div id="opening-side" class="col-lg-5 col-md-6 col-sm-8 col-12 float-center">
<h1>Connecting...</h1>
<ul>
<li>Port: <b>5222</b></li>
@@ -55,9 +58,11 @@ permalink: /
</div>
</div>
+<!-- Register Form -->
+
{% if site.register-web == 2 %}
<div id="register" class="index-section">
- <div id="feature-register" style="background-color:#eee;padding:60px 0;">
+ <div id="feature-register">
<div id="feature-register" class="container offsetanchor">
{% include registration.html %}
</div>
@@ -65,36 +70,42 @@ permalink: /
</div>
{% endif %}
- {% for section in site.data.sections %}
- <div id="{{ section.slug }}" class="index-section feature-section" style="background-color:#{{ section.color }};">
- <div class="container offsetanchor">
- <div class="section-headder" id="feature-{{ section.slug }}"><center>
- <span class="{{ section.glyph }}" style="font-size:100px;" aria-hidden="true"></span>
- <h2>{{ section.name }}</h2>
- </center></div>
- <div class="row">
- <div class="feature-{{ section.slug }}">
- <div class="row">
- {% for feature in site.data.features %}
- {% if feature.section == section.slug %}
- <div class="col-md-4 col-sm-6" style="min-height:280px;">
- <h3>{{ feature.name }}</h3>
- <p>{{ feature.text }}</p>
- </div>
- {% endif %}
- {% endfor %}
+<!-- Site Features -->
+
+{% for section in site.data.sections %}
+<div id="{{ section.slug }}" class="index-section feature-section" style="background-color:#{{ section.color }};">
+ <div class="container offsetanchor">
+ <div class="section-headder" id="feature-{{ section.slug }}">
+ <center>
+ <span class="{{ section.glyph }}" style="font-size:100px;" aria-hidden="true"></span>
+ <h2>{{ section.name }}</h2>
+ </center>
+ </div>
+ <div class="row">
+ <div class="feature-{{ section.slug }}">
+ <div class="row">
+ {% for feature in site.data.features %}
+ {% if feature.section == section.slug %}
+ <div class="col-md-4 col-sm-6" style="min-height:280px;">
+ <h3>{{ feature.name }}</h3>
+ <p>{{ feature.text }}</p>
</div>
+ {% endif %}
+ {% endfor %}
</div>
</div>
</div>
- </div>
- {% endfor %}
+ </div>
+</div>
+{% endfor %}
+<!-- About Section -->
<div id="about" class="index-section" style="background-color:#eee;">
{% include about.html %}
</div>
+<!-- Security Section -->
<div id="security" class="index-section-last">
{% include security.html %}