7-page-content edit

row  edit

Used to output rows in example pages

No content is set. no content set
Copy
Edit
<!-- components/7-page-content/row.php --> <?php // get the row type from the url if (isset($_GET['rowType']) && $_GET['rowType'] != "" && !isset($content)) { $content = $_GET['rowType']; } elseif (!isset($content)) { echo "No content is set."; } ?> <!-- could also be aside, depending on row type --> <?php outputRow($content); $filename = $base_url . '/atomic-foot.php'; if (file_exists($filename)) { include($base_url . "../atomic-foot.php"); } ?>
Copy
Copy
Edit
/* scss/7-page-content/_row.scss */