-
Notifications
You must be signed in to change notification settings - Fork 14.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a9600d
commit e96494e
Showing
6 changed files
with
154 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
body { | ||
padding-top: 0px; | ||
} | ||
|
||
div.navbar { | ||
margin-bottom: 0px; | ||
} | ||
|
||
.carousel img { | ||
max-height: 500px; | ||
} | ||
.carousel { | ||
overflow: hidden; | ||
height: 500px; | ||
} | ||
.carousel-caption h1 { | ||
font-size: 80px; | ||
} | ||
.carousel-caption p { | ||
font-size: 20px; | ||
} | ||
div.carousel-caption{ | ||
background: rgba(0,0,0,0.5); | ||
border-radius: 20px; | ||
top: 150px; | ||
bottom: auto !important; | ||
} | ||
.carousel-inner > .item > img { | ||
margin: 0 auto; | ||
} | ||
{ | ||
margin: -20px; | ||
} | ||
.carousel-indicators li { | ||
background-color: #AAA; | ||
border: 1px solid black; | ||
} | ||
|
||
.carousel-indicators .active { | ||
background-color: #000; | ||
border: 5px solid black; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
{% extends "!layout.html" %} | ||
|
||
{% set bootswatch_css_custom = ['_static/docs.css'] %} | ||
|
||
{%- block content %} | ||
{{ navBar() }} | ||
{% if pagename == 'index' %} | ||
<div id="carousel" class="carousel slide" data-ride="carousel"> | ||
<!-- Indicators --> | ||
<ol class="carousel-indicators"> | ||
<li data-target="#carousel" data-slide-to="0" class="active"></li> | ||
<li data-target="#carousel" data-slide-to="1"></li> | ||
<li data-target="#carousel" data-slide-to="2"></li> | ||
<li data-target="#carousel" data-slide-to="3"></li> | ||
<li data-target="#carousel" data-slide-to="4"></li> | ||
</ol> | ||
|
||
<!-- Wrapper for slides --> | ||
<div class="carousel-inner" role="listbox"> | ||
<div class="item active text-center"> | ||
<img src="/static/img/dash.png"> | ||
<div class="carousel-caption"> | ||
<div> | ||
<h1>Panoramix</h1> | ||
<p> | ||
an open source data visualization platform | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<img src="/static/img/bubble.png"> | ||
<div class="carousel-caption"> | ||
<h2>Explore your data | ||
</h2> | ||
<p> | ||
Intuitively navigate your data while slicing, dicing, and | ||
visualizing through a rich set of widgets | ||
</p> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<img src="/static/img/dash.png"> | ||
<div class="carousel-caption"> | ||
<h2>Create and share dashboards</h2> | ||
<p>Assemble many data visualization "slices" into a rich collection</p> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<img src="/static/img/cloud.png"> | ||
<div class="carousel-caption"> | ||
<h2>Extend</h2> | ||
<p>Join the community and take part in extending the widget library</p> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<img src="/static/img/servers.jpg"> | ||
<div class="carousel-caption"> | ||
<h2>Connect</h2> | ||
<p> | ||
Access data from MySql, Presto.db, Postgres, RedShift, Oracle, MsSql, | ||
SQLite, and more through the SqlAlchemy integration. You can also | ||
query realtime data blazingly fast out of Druid.io | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Controls --> | ||
<div> | ||
<a class="left carousel-control" href="#carousel" role="button" data-slide="prev"> | ||
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> | ||
<span class="sr-only">Previous</span> | ||
</a> | ||
<a class="right carousel-control" href="#carousel" role="button" data-slide="next"> | ||
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> | ||
<span class="sr-only">Next</span> | ||
</a> | ||
</div> | ||
</div> | ||
<hr/> | ||
<div class="container"> | ||
<div class="jumbotron"> | ||
<h1>Panoramix</h1> | ||
<p> | ||
an open source data visualization platform that provides easy | ||
exploration of your data and allows you to create and share | ||
beautiful charts and dashboards | ||
</p> | ||
</div> | ||
</div> | ||
{% endif %} | ||
<div class="container mainbody"> | ||
{% block body %}{% endblock %} | ||
</div> | ||
{%- endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../docs/_build/html/ |