first import

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-08 11:40:19 +02:00
commit 1bc61b12ad
8435 changed files with 1582817 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
/**
* @file
* Alpha's theme implementation to display a block.
*/
?>
<div<?php print $attributes; ?>>
<div class="block-inner clearfix">
<?php print render($title_prefix); ?>
<?php if ($block->subject): ?>
<h2<?php print $title_attributes; ?>><?php print $block->subject; ?></h2>
<?php endif; ?>
<?php print render($title_suffix); ?>
<div<?php print $content_attributes; ?>>
<?php print $content ?>
</div>
</div>
</div>

View File

@@ -0,0 +1,24 @@
<?php
/**
* @file
* Alpha's theme implementation to display the basic html structure of a single
* Drupal page.
*/
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" version="XHTML+RDFa 1.0" dir="<?php print $language->dir; ?>"<?php print $rdf_namespaces; ?>>
<head profile="<?php print $grddl_profile; ?>">
<?php print $head; ?>
<title><?php print $head_title; ?></title>
<?php print $styles; ?>
<?php print $scripts; ?>
</head>
<body<?php print $attributes;?>>
<div id="skip-link">
<a href="#main-content" class="element-invisible element-focusable"><?php print t('Skip to main content'); ?></a>
</div>
<?php print $page_top; ?>
<?php print $page; ?>
<?php print $page_bottom; ?>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<?php
/**
* @file
* Alpha's theme implementation to display a single Drupal page.
*/
?>
<div<?php print $attributes; ?>>
<?php if (isset($page['header'])) : ?>
<?php print render($page['header']); ?>
<?php endif; ?>
<?php if (isset($page['content'])) : ?>
<?php print render($page['content']); ?>
<?php endif; ?>
<?php if (isset($page['footer'])) : ?>
<?php print render($page['footer']); ?>
<?php endif; ?>
</div>

View File

@@ -0,0 +1,11 @@
<?php
/**
* @file
* Alpha's theme implementation to display a region.
*/
?>
<div<?php print $attributes; ?>>
<div<?php print $content_attributes; ?>>
<?php print $content; ?>
</div>
</div>

View File

@@ -0,0 +1,9 @@
<?php
/**
* @file
* Alpha's theme implementation to display a section.
*/
?>
<div<?php print $attributes; ?>>
<?php print $content; ?>
</div>

View File

@@ -0,0 +1,11 @@
<?php
/**
* @file
* Alpha's theme implementation to display a zone.
*/
?>
<?php if ($wrapper): ?><div<?php print $attributes; ?>><?php endif; ?>
<div<?php print $content_attributes; ?>>
<?php print $content; ?>
</div>
<?php if ($wrapper): ?></div><?php endif; ?>