Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 43f24bcd authored by NINASSI Benjamin's avatar NINASSI Benjamin
Browse files
parents 90fe3d28 e64b78a6
No related branches found
No related tags found
No related merge requests found
...@@ -318,6 +318,22 @@ li.iai-tuto-link .iai-tuto-icon { ...@@ -318,6 +318,22 @@ li.iai-tuto-link .iai-tuto-icon {
margin-right: 112px; margin-right: 112px;
} }
.iai-content.iai-content-post {
margin-bottom: 100px;
}
.iai-content.iai-content-post h2 {
padding-left:0;
}
.iai-content.iai-content-post p {
font-family: 'Raleway', sans-serif;
font-size: 17px;
line-height: 21px;
margin-bottom: 20px;
margin-right: 80px;
}
#debattre .iai-content h2 { #debattre .iai-content h2 {
margin-right: 225px; margin-right: 225px;
} }
...@@ -1731,6 +1747,17 @@ a.iai-content-links-header:hover .toggle { ...@@ -1731,6 +1747,17 @@ a.iai-content-links-header:hover .toggle {
margin-bottom:2px; margin-bottom:2px;
} }
.iai-content.iai-content-post p {
font-size: 15px;
line-height: 19px;
margin-bottom: 20px;
margin-right: 30px;
}
.iai-content.iai-content-post h2 {
margin-bottom: 20px;
}
.iai-content-links-header { .iai-content-links-header {
padding: 16px 30px 16px 12px; padding: 16px 30px 16px 12px;
} }
......
...@@ -48,6 +48,7 @@ class CLASSCODE2_Plugin { ...@@ -48,6 +48,7 @@ class CLASSCODE2_Plugin {
'template-iai-module1.php' => __( 'ClassCode 2 IAI Module1', $this->plugin_slug ), 'template-iai-module1.php' => __( 'ClassCode 2 IAI Module1', $this->plugin_slug ),
'template-iai-module2.php' => __( 'ClassCode 2 IAI Module2', $this->plugin_slug ), 'template-iai-module2.php' => __( 'ClassCode 2 IAI Module2', $this->plugin_slug ),
'template-iai-module3.php' => __( 'ClassCode 2 IAI Module3', $this->plugin_slug ), 'template-iai-module3.php' => __( 'ClassCode 2 IAI Module3', $this->plugin_slug ),
'template-iai-post.php' => __( 'ClassCode 2 IAI Article', $this->plugin_slug ),
'template-iai-parcours.php' => __( 'ClassCode 2 IAI Accueil', $this->plugin_slug ) 'template-iai-parcours.php' => __( 'ClassCode 2 IAI Accueil', $this->plugin_slug )
); );
......
<?php
/*
Template Name: ClassCode IAI Accueil Parcours
*/
require_once( CLASSCODE2_PLUGIN_DIR . '/templates/templates-parts/header.php');
require_once( CLASSCODE2_PLUGIN_DIR . '/templates/templates-parts/header-menu-javascript.php');
require_once( CLASSCODE2_PLUGIN_DIR . '/templates/templates-parts/iai/header-article.php');
require_once( CLASSCODE2_PLUGIN_DIR . '/templates/templates-parts/iai/side-nav-parcours.php');
require_once( CLASSCODE2_PLUGIN_DIR . '/templates/templates-parts/iai/display.php');
require_once( CLASSCODE2_PLUGIN_DIR . '/templates/templates-parts/iai/footer-javascript.php');
require_once( CLASSCODE2_PLUGIN_DIR . '/templates/templates-parts/footer.php');
?>
<div class="iai-content iai-content-post" >
<h2><?php echo get_the_title(); ?></h2>
<div class="iai-content-blocks">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_content();
}
}
?>
</div>
</div>
\ No newline at end of file
<?php
$route_IAI = CLASSCODE2_ROUTE . CLASSCODE2_IAI_ROUTE;
?>
<div class="iai-header iai-home-header <?php if ( is_user_logged_in() ) { echo ' with-userbar'; } ?>">
<div class="iai-menu-burger"></div>
<a class="iai-logo" href="<?php echo site_url( $route_IAI ) ?>"></a>
<div class="iai-baseline">
<span>L’Intelligence Artificielle avec Intelligence</span>
</div>
</div>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment