aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorFilip Komar <filip@mageia.org>2014-04-23 20:23:46 +0000
committerFilip Komar <filip@mageia.org>2014-04-23 20:23:46 +0000
commite1a649fad006aef477629c3deefff276d698c36a (patch)
treedb953555802b766ec6c8222f035842f57b43e895 /test
parent7c73dca8aee8e04b8f8ab231c49afe3d89c5055d (diff)
downloadwww-e1a649fad006aef477629c3deefff276d698c36a.tar
www-e1a649fad006aef477629c3deefff276d698c36a.tar.gz
www-e1a649fad006aef477629c3deefff276d698c36a.tar.bz2
www-e1a649fad006aef477629c3deefff276d698c36a.tar.xz
www-e1a649fad006aef477629c3deefff276d698c36a.zip
added some test pages
Diffstat (limited to 'test')
-rw-r--r--test/center.php28
-rw-r--r--test/left.php28
2 files changed, 56 insertions, 0 deletions
diff --git a/test/center.php b/test/center.php
new file mode 100644
index 000000000..846ca2b64
--- /dev/null
+++ b/test/center.php
@@ -0,0 +1,28 @@
+<?php
+define('HLANG', true);
+define('ALIGNMENT', 'Center');
+require '../langs.php';
+?><!DOCTYPE html>
+<html lang="<?php echo $locale; ?>" dir="ltr">
+<head>
+ <meta charset="utf-8">
+ <title><?php _g('Center Alignment')?></title>
+ <meta name="description" content="<?php _g('Center Alignment test')?>">
+ <link rel="stylesheet" href="/g/style/all.css" type="text/css">
+ <?php include '../analytics.php'; ?>
+</head>
+<body class="doc">
+ <?php echo $hsnav; ?>
+ <h1 id="mgnavt"><?php _g('Center Alignment')?></h1>
+ <div id="doc" class="yui-t7">
+ <div id="bd" role="main">
+ <div class="yui-g">
+ <div class="para donate" style="padding-top: 2em;">
+ <h2><?php _g('Center Alignment page')?></h2>
+ <p><?php _g('Center Alignment, Center Alignment, Center Alignment...')?></p>
+ </div>
+ </div>
+ </div>
+ </div>
+</body>
+</html>
diff --git a/test/left.php b/test/left.php
new file mode 100644
index 000000000..9189b3923
--- /dev/null
+++ b/test/left.php
@@ -0,0 +1,28 @@
+<?php
+define('HLANG', true);
+define('ALIGNMENT', 'Left');
+require '../langs.php';
+?><!DOCTYPE html>
+<html lang="<?php echo $locale; ?>" dir="ltr">
+<head>
+ <meta charset="utf-8">
+ <title><?php _g('Left Alignment')?></title>
+ <meta name="description" content="<?php _g('Left Alignment test')?>">
+ <link rel="stylesheet" href="/g/style/all.css" type="text/css">
+ <?php include '../analytics.php'; ?>
+</head>
+<body class="doc">
+ <?php echo $hsnav; ?>
+ <h1 id="mgnavt"><?php _g('Left Alignment')?></h1>
+ <div id="doc" class="yui-t7">
+ <div id="bd" role="main">
+ <div class="yui-g">
+ <div class="para donate" style="padding-top: 2em;">
+ <h2><?php _g('Left Alignment page')?></h2>
+ <p><?php _g('Left Alignment, Left Alignment, Left Alignment...')?></p>
+ </div>
+ </div>
+ </div>
+ </div>
+</body>
+</html>