diff --git a/scripts/langindex.json b/scripts/langindex.json
index 390e3fa12..6e9b7a740 100644
--- a/scripts/langindex.json
+++ b/scripts/langindex.json
@@ -56,6 +56,16 @@
"addon.block_timeline.pluginname": "block_timeline",
"addon.block_timeline.sortbycourses": "block_timeline",
"addon.block_timeline.sortbydates": "block_timeline",
+ "addon.blog.blog": "blog",
+ "addon.blog.blogentries": "blog",
+ "addon.blog.errorloadentries": "local_moodlemobileapp",
+ "addon.blog.linktooriginalentry": "blog",
+ "addon.blog.noentriesyet": "blog",
+ "addon.blog.publishtonoone": "blog",
+ "addon.blog.publishtosite": "blog",
+ "addon.blog.publishtoworld": "blog",
+ "addon.blog.showonlyyourentries": "local_moodlemobileapp",
+ "addon.blog.siteblogheading": "blog",
"addon.calendar.calendar": "calendar",
"addon.calendar.calendarevents": "local_moodlemobileapp",
"addon.calendar.defaultnotificationtime": "local_moodlemobileapp",
diff --git a/src/addon/blog/blog.module.ts b/src/addon/blog/blog.module.ts
new file mode 100644
index 000000000..275a16873
--- /dev/null
+++ b/src/addon/blog/blog.module.ts
@@ -0,0 +1,46 @@
+// (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 { CoreMainMenuDelegate } from '@core/mainmenu/providers/delegate';
+import { CoreUserDelegate } from '@core/user/providers/user-delegate';
+import { CoreCourseOptionsDelegate } from '@core/course/providers/options-delegate';
+import { AddonBlogProvider } from './providers/blog';
+import { AddonBlogMainMenuHandler } from './providers/mainmenu-handler';
+import { AddonBlogUserHandler } from './providers/user-handler';
+import { AddonBlogCourseOptionHandler } from './providers/course-option-handler';
+import { AddonBlogComponentsModule } from './components/components.module';
+
+@NgModule({
+ declarations: [
+ ],
+ imports: [
+ AddonBlogComponentsModule
+ ],
+ providers: [
+ AddonBlogProvider,
+ AddonBlogMainMenuHandler,
+ AddonBlogUserHandler,
+ AddonBlogCourseOptionHandler
+ ]
+})
+export class AddonBlogModule {
+ constructor(mainMenuDelegate: CoreMainMenuDelegate, menuHandler: AddonBlogMainMenuHandler,
+ userHandler: AddonBlogUserHandler, userDelegate: CoreUserDelegate,
+ courseOptionHandler: AddonBlogCourseOptionHandler, courseOptionsDelegate: CoreCourseOptionsDelegate) {
+ mainMenuDelegate.registerHandler(menuHandler);
+ userDelegate.registerHandler(userHandler);
+ courseOptionsDelegate.registerHandler(courseOptionHandler);
+ }
+}
diff --git a/src/addon/blog/components/components.module.ts b/src/addon/blog/components/components.module.ts
new file mode 100644
index 000000000..0e56fcc3f
--- /dev/null
+++ b/src/addon/blog/components/components.module.ts
@@ -0,0 +1,47 @@
+// (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 { CommonModule } from '@angular/common';
+import { IonicModule } from 'ionic-angular';
+import { TranslateModule } from '@ngx-translate/core';
+import { CoreComponentsModule } from '@components/components.module';
+import { CoreDirectivesModule } from '@directives/directives.module';
+import { CorePipesModule } from '@pipes/pipes.module';
+import { CoreCommentsComponentsModule } from '@core/comments/components/components.module';
+import { AddonBlogEntriesComponent } from './entries/entries';
+
+@NgModule({
+ declarations: [
+ AddonBlogEntriesComponent
+ ],
+ imports: [
+ CommonModule,
+ IonicModule,
+ TranslateModule.forChild(),
+ CoreComponentsModule,
+ CoreDirectivesModule,
+ CorePipesModule,
+ CoreCommentsComponentsModule
+ ],
+ providers: [
+ ],
+ exports: [
+ AddonBlogEntriesComponent
+ ],
+ entryComponents: [
+ AddonBlogEntriesComponent
+ ]
+})
+export class AddonBlogComponentsModule {}
diff --git a/src/addon/blog/components/entries/addon-blog-entries.html b/src/addon/blog/components/entries/addon-blog-entries.html
new file mode 100644
index 000000000..9312a00cd
--- /dev/null
+++ b/src/addon/blog/components/entries/addon-blog-entries.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+