Step One of @IndieWebCamp Online 2020 Hack Day Project finished
I finished step one of building my poetry page which was actually tearing apart my following page into different php files so I could move the snippets around across my website:
<?php include 'head.php'; ?>
</head>
<?php include 'header.php'; ?>
</header>
< class="h-entry">
< href="index.html">
< class="p-author h-card" href="/">
</a>
< class="followlist">
< class="p-name">
Following
</h1>
<?php include 'edtech.php'; ?>
<?php include 'openpedagogy.php'; ?>
<?php include 'indieweb.php'; ?>
<?php include 'literacies.php'; ?>
<?php include 'poetry.php'; ?>
<?php include 'education.php'; ?>
<?php include 'bloggers.php'; ?>
<?php include 'edreform.php'; ?>
<?php include 'instructionaldesign.php'; ?>
</div>
</main>
<>
<?php include 'footer.php'; ?>
</body>
</html>


