summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/blogs
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-09-14 15:38:59 -0400
committerJules Laplace <jules@okfoc.us>2015-09-14 15:38:59 -0400
commit6e5cc9505e8b577228bfbe87729174c105a747fd (patch)
tree7c6011fb7c169e152f1176af90598753d79ab086 /StoneIsland/www/js/lib/blogs
parent45cb294f9adb1532e0b88f1c236c28dab18a4efe (diff)
stub views
Diffstat (limited to 'StoneIsland/www/js/lib/blogs')
-rw-r--r--StoneIsland/www/js/lib/blogs/ArchiveView.js11
-rw-r--r--StoneIsland/www/js/lib/blogs/HubView.js11
-rw-r--r--StoneIsland/www/js/lib/blogs/StoryView.js11
3 files changed, 33 insertions, 0 deletions
diff --git a/StoneIsland/www/js/lib/blogs/ArchiveView.js b/StoneIsland/www/js/lib/blogs/ArchiveView.js
new file mode 100644
index 00000000..673f3b3f
--- /dev/null
+++ b/StoneIsland/www/js/lib/blogs/ArchiveView.js
@@ -0,0 +1,11 @@
+var ArchiveView = View.extend({
+
+ el: "#archive",
+
+ events: {
+ },
+
+ initialize: function(){
+ },
+
+}) \ No newline at end of file
diff --git a/StoneIsland/www/js/lib/blogs/HubView.js b/StoneIsland/www/js/lib/blogs/HubView.js
new file mode 100644
index 00000000..936c766f
--- /dev/null
+++ b/StoneIsland/www/js/lib/blogs/HubView.js
@@ -0,0 +1,11 @@
+var HubView = View.extend({
+
+ el: "#hub",
+
+ events: {
+ },
+
+ initialize: function(){
+ },
+
+}) \ No newline at end of file
diff --git a/StoneIsland/www/js/lib/blogs/StoryView.js b/StoneIsland/www/js/lib/blogs/StoryView.js
new file mode 100644
index 00000000..338f124b
--- /dev/null
+++ b/StoneIsland/www/js/lib/blogs/StoryView.js
@@ -0,0 +1,11 @@
+var StoryView = View.extend({
+
+ el: "#story",
+
+ events: {
+ },
+
+ initialize: function(){
+ },
+
+}) \ No newline at end of file