- style.css : design system complet (navy #1B2A4A, orange #E8772E, Inter, animations) - functions.php : enqueue scripts/styles + handler AJAX formulaire contact - header.php : navbar sticky avec burger mobile - front-page.php : toutes les sections (Hero, Problématique, Process, Demos, About, FAQ, Contact) - footer.php : footer 3 colonnes + bottom bar légal - js/main.js : scroll reveal, FAQ accordion, menu mobile, formulaire AJAX - index.php / page.php : templates fallback https://claude.ai/code/session_01PzA98VhLMmsHpzs7gnLHGs
11 lines
453 B
PHP
11 lines
453 B
PHP
<?php get_header(); ?>
|
|
<main style="max-width:800px;margin:4rem auto;padding:0 1.5rem">
|
|
<?php if (have_posts()): while (have_posts()): the_post(); ?>
|
|
<article>
|
|
<h1 style="font-size:2rem;color:var(--navy);margin-bottom:2rem;font-weight:800"><?php the_title(); ?></h1>
|
|
<div style="color:var(--text-l);line-height:1.8;font-size:1rem"><?php the_content(); ?></div>
|
|
</article>
|
|
<?php endwhile; endif; ?>
|
|
</main>
|
|
<?php get_footer(); ?>
|