Skip to content

Commit 014e540

Browse files
committed
dang it
1 parent fb70a6e commit 014e540

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { baseEntryStruct, blogEntry } from '../../../js/blog/blogEntryBase.js';
2+
3+
const entryData = baseEntryStruct();
4+
entryData.title = "Iterative Constructs";
5+
entryData.date = "2026-03-15";
6+
entryData.eid = "A";
7+
entryData.tags = [];
8+
entryData.body = `
9+
10+
11+
<br><br><div class="textFullRight">- March 15th 2026</div>
12+
`;
13+
14+
const blogEntryObj = new blogEntry(null, entryData);
15+
16+
export { blogEntryObj };

0 commit comments

Comments
 (0)