From 42d6bed3e844deac88531ce45095a5dd6a371a5a Mon Sep 17 00:00:00 2001 From: Rubenwardy Date: Tue, 28 Aug 2012 16:44:02 +0100 Subject: [PATCH] Initial Push --- index.html | 0 scripts/database.rb | 7 +++++ style/footer.html | 0 style/header.html | 39 ++++++++++++++++++++++++++++ mainstyle.css => style/mainstyle.css | 0 5 files changed, 46 insertions(+) create mode 100644 index.html create mode 100644 scripts/database.rb create mode 100644 style/footer.html create mode 100644 style/header.html rename mainstyle.css => style/mainstyle.css (100%) diff --git a/index.html b/index.html new file mode 100644 index 0000000..e69de29 diff --git a/scripts/database.rb b/scripts/database.rb new file mode 100644 index 0000000..79927bc --- /dev/null +++ b/scripts/database.rb @@ -0,0 +1,7 @@ +class Mod < ActiveRecord::Base + belongs_to :user +end + +class User < ActiveRecord::Base + has_many :mods +end \ No newline at end of file diff --git a/style/footer.html b/style/footer.html new file mode 100644 index 0000000..e69de29 diff --git a/style/header.html b/style/header.html new file mode 100644 index 0000000..94d8e85 --- /dev/null +++ b/style/header.html @@ -0,0 +1,39 @@ + + + + + + +The Title - Minetest Mods + + + + + + + + + + + +
+ + + + +
+Login Box +
+ +
+Home +
+ +
+
+ +
+
+ + +
diff --git a/mainstyle.css b/style/mainstyle.css similarity index 100% rename from mainstyle.css rename to style/mainstyle.css