diff --git a/src/addon/files/files.module.ts b/src/addon/files/files.module.ts
new file mode 100644
index 000000000..56560abc2
--- /dev/null
+++ b/src/addon/files/files.module.ts
@@ -0,0 +1,36 @@
+// (C) Copyright 2015 Martin Dougiamas
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+import { NgModule } from '@angular/core';
+import { AddonFilesProvider } from './providers/files';
+import { AddonFilesHelperProvider } from './providers/helper';
+import { AddonFilesMainMenuHandler } from './providers/mainmenu-handler';
+import { CoreMainMenuDelegate } from '../../core/mainmenu/providers/delegate';
+
+@NgModule({
+ declarations: [
+ ],
+ imports: [
+ ],
+ providers: [
+ AddonFilesProvider,
+ AddonFilesHelperProvider,
+ AddonFilesMainMenuHandler
+ ]
+})
+export class AddonFilesModule {
+ constructor(mainMenuDelegate: CoreMainMenuDelegate, filesHandler: AddonFilesMainMenuHandler) {
+ mainMenuDelegate.registerHandler(filesHandler);
+ }
+}
diff --git a/src/addon/files/lang/en.json b/src/addon/files/lang/en.json
new file mode 100644
index 000000000..6f0e863a2
--- /dev/null
+++ b/src/addon/files/lang/en.json
@@ -0,0 +1,8 @@
+{
+ "couldnotloadfiles": "The list of files could not be loaded.",
+ "emptyfilelist": "There are no files to show.",
+ "erroruploadnotworking": "Unfortunately it is currently not possible to upload files to your site.",
+ "files": "My files",
+ "privatefiles": "Private files",
+ "sitefiles": "Site files"
+}
\ No newline at end of file
diff --git a/src/addon/files/pages/list/list.html b/src/addon/files/pages/list/list.html
new file mode 100644
index 000000000..b55f063db
--- /dev/null
+++ b/src/addon/files/pages/list/list.html
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+