From c98515883097467896a3f46b755c8cb892fe8961 Mon Sep 17 00:00:00 2001
From: Ludovic Pouzenc <lpouzenc@gmail.com>
Date: Tue, 29 Oct 2013 18:42:08 +0100
Subject: Import initial avec une arbrescence éclatée
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 samplefiles/templates/aloha/images/background.png  | Bin 0 -> 251 bytes
 .../aloha/images/external-link-ltr-icon.png        | Bin 0 -> 279 bytes
 samplefiles/templates/aloha/layout-article.php     |  15 ++++
 samplefiles/templates/aloha/screen.css             |  79 +++++++++++++++++++++
 samplefiles/templates/default/layout-article.php   |  12 ++++
 samplefiles/templates/default/screen.css           |   0
 6 files changed, 106 insertions(+)
 create mode 100644 samplefiles/templates/aloha/images/background.png
 create mode 100644 samplefiles/templates/aloha/images/external-link-ltr-icon.png
 create mode 100644 samplefiles/templates/aloha/layout-article.php
 create mode 100644 samplefiles/templates/aloha/screen.css
 create mode 100644 samplefiles/templates/default/layout-article.php
 create mode 100644 samplefiles/templates/default/screen.css

(limited to 'samplefiles/templates')

diff --git a/samplefiles/templates/aloha/images/background.png b/samplefiles/templates/aloha/images/background.png
new file mode 100644
index 0000000..64ece57
Binary files /dev/null and b/samplefiles/templates/aloha/images/background.png differ
diff --git a/samplefiles/templates/aloha/images/external-link-ltr-icon.png b/samplefiles/templates/aloha/images/external-link-ltr-icon.png
new file mode 100644
index 0000000..4b710b0
Binary files /dev/null and b/samplefiles/templates/aloha/images/external-link-ltr-icon.png differ
diff --git a/samplefiles/templates/aloha/layout-article.php b/samplefiles/templates/aloha/layout-article.php
new file mode 100644
index 0000000..86a65a7
--- /dev/null
+++ b/samplefiles/templates/aloha/layout-article.php
@@ -0,0 +1,15 @@
+<div id="main">
+<!--<div id="tree-div"></div>-->
+<h1 id="title"><?=$page_props['page_title']?></h1>
+<div id="bodyContent">
+
+<div id="teaser" class="shorttext">
+<?php include("$page_path/div-teaser.html"); ?>
+</div>
+
+<div id="content" class="article">
+<?php include("$page_path/div-content.html"); ?>
+</div>
+
+</div>
+</div>
diff --git a/samplefiles/templates/aloha/screen.css b/samplefiles/templates/aloha/screen.css
new file mode 100644
index 0000000..cec5b0a
--- /dev/null
+++ b/samplefiles/templates/aloha/screen.css
@@ -0,0 +1,79 @@
+body {
+  font-family: sans-serif;
+}
+
+body {
+  background-image: url("images/background.png");
+}
+
+#bodyContent {
+	font-size:0.8em;
+}
+
+h1, h2, h3, h4, h5, h6 {
+  font-family: sans-serif;
+  color: #1c94c4;
+  border-bottom:1px solid #AAAAAA;
+  padding-bottom:0.17em;
+  padding-top:0.5em;
+}
+
+h1 { font-size: 188%; }
+h2 { font-size: 150%; }
+h3 { font-size: 132%; }
+h4 { font-size: 116%; }
+h5 { font-size: 100%; }
+h6 { font-size: 80%;  }
+
+#main {
+  width: 50%;
+  position: absolute;
+  top: 10%;
+  left: 25%;
+  padding: 30px;
+  background-color: white;
+  border-radius: 10px;
+  color: #444444;
+  -moz-border-radius: 10px;
+  box-shadow: 5px 5px rgba(0,0,0,0.3);
+  -webkit-box-shadow: 5px 5px rgba(0,0,0,0.3);
+  -moz-box-shadow: 5px 5px rgba(0,0,0,0.3);
+}
+
+a.aloha {
+  background: url(images/external-link-ltr-icon.png) no-repeat 100% 50%;
+  padding: 0px 13px 0px 0px;
+}
+
+/* Abbreviation styling */
+abbr, acronym
+{
+	border-bottom: .1em dotted;
+	cursor: help;
+}
+
+/* A basic table styling */
+table
+{
+  padding: 0;
+  margin: 0;
+  border-collapse: collapse;
+  border: 1px solid #333;
+  color: #000;
+}
+
+table caption
+{
+  caption-side: bottom;
+  font-size: 0.8em;
+  font-style: italic;
+  text-align: right;
+  padding: 0.5em 0;
+}
+
+table th, table td
+{
+  border: 1px solid #666;
+  padding: 0.5em;
+  text-align: left;
+}
\ No newline at end of file
diff --git a/samplefiles/templates/default/layout-article.php b/samplefiles/templates/default/layout-article.php
new file mode 100644
index 0000000..36e6e6c
--- /dev/null
+++ b/samplefiles/templates/default/layout-article.php
@@ -0,0 +1,12 @@
+<div id="main">
+	<h1 id="title"><?=$page_props['page_title']?></h1>
+	<div id="body">
+		<div id="teaser" class="shorttext">
+<?php include("$page_path/div-teaser.html"); ?>
+		</div>
+
+		<div id="content" class="article">
+<?php include("$page_path/div-content.html"); ?>
+		</div>
+	</div>
+</div>
diff --git a/samplefiles/templates/default/screen.css b/samplefiles/templates/default/screen.css
new file mode 100644
index 0000000..e69de29
-- 
cgit v1.2.3