Skip to content

Commit

Permalink
Add some websites support for WordpressMadara template (#2510)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinh2201 authored and ronny1982 committed Nov 1, 2020
1 parent aa6d303 commit c53bb44
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 0 deletions.
Binary file added src/web/img/connectors/manga3s
Binary file not shown.
Binary file added src/web/img/connectors/rawmangas
Binary file not shown.
Binary file added src/web/img/connectors/s2manga
Binary file not shown.
12 changes: 12 additions & 0 deletions src/web/mjs/connectors/Manga3S.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import WordPressMadara from './templates/WordPressMadara.mjs';

export default class Manga3S extends WordPressMadara {

constructor() {
super();
super.id = 'manga3s';
super.label = 'Manga3S';
this.tags = [ 'manga', 'webtoon', 'english' ];
this.url = 'https://manga3s.com';
}
}
12 changes: 12 additions & 0 deletions src/web/mjs/connectors/RAWMangas.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import WordPressMadara from './templates/WordPressMadara.mjs';

export default class RAWMangas extends WordPressMadara {

constructor() {
super();
super.id = 'rawmangas';
super.label = 'RAWMangas';
this.tags = [ 'manga', 'webtoon', 'english' ];
this.url = 'https://rawmangas.net';
}
}
12 changes: 12 additions & 0 deletions src/web/mjs/connectors/S2Manga.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import WordPressMadara from './templates/WordPressMadara.mjs';

export default class S2Manga extends WordPressMadara {

constructor() {
super();
super.id = 's2manga';
super.label = 'S2Manga';
this.tags = [ 'manga', 'webtoon', 'english' ];
this.url = 'https://s2manga.com';
}
}

0 comments on commit c53bb44

Please sign in to comment.