Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@
<div class="container">
<!-- This is where the magazine will be displayed -->
<?=$styla->getMagazineTag() ?>
<?=$styla->getSEOBody() ?>
</div>
</body>
</html>
4 changes: 3 additions & 1 deletion styla.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ public function getLPMetaTags() {

public function getMagazineTag() {
return join([
"<div id=\"stylaMagazine\"></div>"
"<div id=\"stylaMagazine\">",
$this->getSEOBody(),
"</div>"
]);
}

Expand Down