├── .env.example ├── .gitattributes ├── .gitignore ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ └── AdminController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Repository │ └── AdminRepostiry.php └── User.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── editormd.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ └── 2014_10_12_100000_create_password_resets_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── dist │ ├── css │ │ ├── AdminLTE.css │ │ └── skins │ │ │ ├── _all-skins.css │ │ │ ├── _all-skins.min.css │ │ │ ├── skin-black-light.css │ │ │ ├── skin-black-light.min.css │ │ │ ├── skin-black.css │ │ │ ├── skin-black.min.css │ │ │ ├── skin-blue-light.css │ │ │ ├── skin-blue-light.min.css │ │ │ ├── skin-blue.css │ │ │ ├── skin-blue.min.css │ │ │ ├── skin-green-light.css │ │ │ ├── skin-green-light.min.css │ │ │ ├── skin-green.css │ │ │ ├── skin-green.min.css │ │ │ ├── skin-purple-light.css │ │ │ ├── skin-purple-light.min.css │ │ │ ├── skin-purple.css │ │ │ ├── skin-purple.min.css │ │ │ ├── skin-red-light.css │ │ │ ├── skin-red-light.min.css │ │ │ ├── skin-red.css │ │ │ ├── skin-red.min.css │ │ │ ├── skin-yellow-light.css │ │ │ ├── skin-yellow-light.min.css │ │ │ ├── skin-yellow.css │ │ │ └── skin-yellow.min.css │ ├── img │ │ └── avatar.jpeg │ └── js │ │ ├── admin.js │ │ └── demo.js ├── favicon.ico ├── images │ ├── adminarticle.png │ └── adminimg.png ├── index.php ├── js │ └── app.js ├── robots.txt ├── vendor │ └── editormd │ │ ├── css │ │ ├── customer.css │ │ ├── editormd.css │ │ ├── editormd.logo.css │ │ ├── editormd.logo.min.css │ │ ├── editormd.min.css │ │ ├── editormd.preview.css │ │ └── editormd.preview.min.css │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── editormd-logo.eot │ │ ├── editormd-logo.svg │ │ ├── editormd-logo.ttf │ │ ├── editormd-logo.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ ├── images │ │ ├── loading.gif │ │ ├── loading@2x.gif │ │ ├── loading@3x.gif │ │ └── logos │ │ │ ├── editormd-favicon-16x16.ico │ │ │ ├── editormd-favicon-24x24.ico │ │ │ ├── editormd-favicon-32x32.ico │ │ │ ├── editormd-favicon-48x48.ico │ │ │ ├── editormd-favicon-64x64.ico │ │ │ ├── editormd-logo-114x114.png │ │ │ ├── editormd-logo-120x120.png │ │ │ ├── editormd-logo-144x144.png │ │ │ ├── editormd-logo-16x16.png │ │ │ ├── editormd-logo-180x180.png │ │ │ ├── editormd-logo-240x240.png │ │ │ ├── editormd-logo-24x24.png │ │ │ ├── editormd-logo-320x320.png │ │ │ ├── editormd-logo-32x32.png │ │ │ ├── editormd-logo-48x48.png │ │ │ ├── editormd-logo-57x57.png │ │ │ ├── editormd-logo-64x64.png │ │ │ ├── editormd-logo-72x72.png │ │ │ ├── editormd-logo-96x96.png │ │ │ └── vi.png │ │ ├── js │ │ └── editormd.js │ │ ├── lib │ │ ├── codemirror │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── addon │ │ │ │ ├── comment │ │ │ │ │ ├── comment.js │ │ │ │ │ └── continuecomment.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── display │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ ├── panel.js │ │ │ │ │ ├── placeholder.js │ │ │ │ │ └── rulers.js │ │ │ │ ├── edit │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ ├── closetag.js │ │ │ │ │ ├── continuelist.js │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ ├── matchtags.js │ │ │ │ │ └── trailingspace.js │ │ │ │ ├── fold │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ ├── foldcode.js │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ └── xml-fold.js │ │ │ │ ├── hint │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ ├── css-hint.js │ │ │ │ │ ├── html-hint.js │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ ├── show-hint.css │ │ │ │ │ ├── show-hint.js │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ └── xml-hint.js │ │ │ │ ├── lint │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ ├── css-lint.js │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ ├── json-lint.js │ │ │ │ │ ├── lint.css │ │ │ │ │ ├── lint.js │ │ │ │ │ └── yaml-lint.js │ │ │ │ ├── merge │ │ │ │ │ ├── merge.css │ │ │ │ │ └── merge.js │ │ │ │ ├── mode │ │ │ │ │ ├── loadmode.js │ │ │ │ │ ├── multiplex.js │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ ├── overlay.js │ │ │ │ │ └── simple.js │ │ │ │ ├── runmode │ │ │ │ │ ├── colorize.js │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ ├── runmode.js │ │ │ │ │ └── runmode.node.js │ │ │ │ ├── scroll │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ └── simplescrollbars.js │ │ │ │ ├── search │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ ├── search.js │ │ │ │ │ └── searchcursor.js │ │ │ │ ├── selection │ │ │ │ │ ├── active-line.js │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ └── selection-pointer.js │ │ │ │ ├── tern │ │ │ │ │ ├── tern.css │ │ │ │ │ ├── tern.js │ │ │ │ │ └── worker.js │ │ │ │ └── wrap │ │ │ │ │ └── hardwrap.js │ │ │ ├── addons.min.js │ │ │ ├── bower.json │ │ │ ├── codemirror.min.css │ │ │ ├── codemirror.min.js │ │ │ ├── lib │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── mode │ │ │ │ ├── apl │ │ │ │ │ ├── apl.js │ │ │ │ │ └── index.html │ │ │ │ ├── asterisk │ │ │ │ │ ├── asterisk.js │ │ │ │ │ └── index.html │ │ │ │ ├── clike │ │ │ │ │ ├── clike.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── scala.html │ │ │ │ ├── clojure │ │ │ │ │ ├── clojure.js │ │ │ │ │ └── index.html │ │ │ │ ├── cobol │ │ │ │ │ ├── cobol.js │ │ │ │ │ └── index.html │ │ │ │ ├── coffeescript │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ └── index.html │ │ │ │ ├── commonlisp │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ └── index.html │ │ │ │ ├── css │ │ │ │ │ ├── css.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── less.html │ │ │ │ │ ├── less_test.js │ │ │ │ │ ├── scss.html │ │ │ │ │ ├── scss_test.js │ │ │ │ │ └── test.js │ │ │ │ ├── cypher │ │ │ │ │ ├── cypher.js │ │ │ │ │ └── index.html │ │ │ │ ├── d │ │ │ │ │ ├── d.js │ │ │ │ │ └── index.html │ │ │ │ ├── dart │ │ │ │ │ ├── dart.js │ │ │ │ │ └── index.html │ │ │ │ ├── diff │ │ │ │ │ ├── diff.js │ │ │ │ │ └── index.html │ │ │ │ ├── django │ │ │ │ │ ├── django.js │ │ │ │ │ └── index.html │ │ │ │ ├── dockerfile │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ └── index.html │ │ │ │ ├── dtd │ │ │ │ │ ├── dtd.js │ │ │ │ │ └── index.html │ │ │ │ ├── dylan │ │ │ │ │ ├── dylan.js │ │ │ │ │ └── index.html │ │ │ │ ├── ebnf │ │ │ │ │ ├── ebnf.js │ │ │ │ │ └── index.html │ │ │ │ ├── ecl │ │ │ │ │ ├── ecl.js │ │ │ │ │ └── index.html │ │ │ │ ├── eiffel │ │ │ │ │ ├── eiffel.js │ │ │ │ │ └── index.html │ │ │ │ ├── erlang │ │ │ │ │ ├── erlang.js │ │ │ │ │ └── index.html │ │ │ │ ├── forth │ │ │ │ │ ├── forth.js │ │ │ │ │ └── index.html │ │ │ │ ├── fortran │ │ │ │ │ ├── fortran.js │ │ │ │ │ └── index.html │ │ │ │ ├── gas │ │ │ │ │ ├── gas.js │ │ │ │ │ └── index.html │ │ │ │ ├── gfm │ │ │ │ │ ├── gfm.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── gherkin │ │ │ │ │ ├── gherkin.js │ │ │ │ │ └── index.html │ │ │ │ ├── go │ │ │ │ │ ├── go.js │ │ │ │ │ └── index.html │ │ │ │ ├── groovy │ │ │ │ │ ├── groovy.js │ │ │ │ │ └── index.html │ │ │ │ ├── haml │ │ │ │ │ ├── haml.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── haskell │ │ │ │ │ ├── haskell.js │ │ │ │ │ └── index.html │ │ │ │ ├── haxe │ │ │ │ │ ├── haxe.js │ │ │ │ │ └── index.html │ │ │ │ ├── htmlembedded │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ └── index.html │ │ │ │ ├── htmlmixed │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ └── index.html │ │ │ │ ├── http │ │ │ │ │ ├── http.js │ │ │ │ │ └── index.html │ │ │ │ ├── idl │ │ │ │ │ ├── idl.js │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── jade │ │ │ │ │ ├── index.html │ │ │ │ │ └── jade.js │ │ │ │ ├── javascript │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── json-ld.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── typescript.html │ │ │ │ ├── jinja2 │ │ │ │ │ ├── index.html │ │ │ │ │ └── jinja2.js │ │ │ │ ├── julia │ │ │ │ │ ├── index.html │ │ │ │ │ └── julia.js │ │ │ │ ├── kotlin │ │ │ │ │ ├── index.html │ │ │ │ │ └── kotlin.js │ │ │ │ ├── livescript │ │ │ │ │ ├── index.html │ │ │ │ │ └── livescript.js │ │ │ │ ├── lua │ │ │ │ │ ├── index.html │ │ │ │ │ └── lua.js │ │ │ │ ├── markdown │ │ │ │ │ ├── index.html │ │ │ │ │ ├── markdown.js │ │ │ │ │ └── test.js │ │ │ │ ├── meta.js │ │ │ │ ├── mirc │ │ │ │ │ ├── index.html │ │ │ │ │ └── mirc.js │ │ │ │ ├── mllike │ │ │ │ │ ├── index.html │ │ │ │ │ └── mllike.js │ │ │ │ ├── modelica │ │ │ │ │ ├── index.html │ │ │ │ │ └── modelica.js │ │ │ │ ├── nginx │ │ │ │ │ ├── index.html │ │ │ │ │ └── nginx.js │ │ │ │ ├── ntriples │ │ │ │ │ ├── index.html │ │ │ │ │ └── ntriples.js │ │ │ │ ├── octave │ │ │ │ │ ├── index.html │ │ │ │ │ └── octave.js │ │ │ │ ├── pascal │ │ │ │ │ ├── index.html │ │ │ │ │ └── pascal.js │ │ │ │ ├── pegjs │ │ │ │ │ ├── index.html │ │ │ │ │ └── pegjs.js │ │ │ │ ├── perl │ │ │ │ │ ├── index.html │ │ │ │ │ └── perl.js │ │ │ │ ├── php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── php.js │ │ │ │ │ └── test.js │ │ │ │ ├── pig │ │ │ │ │ ├── index.html │ │ │ │ │ └── pig.js │ │ │ │ ├── properties │ │ │ │ │ ├── index.html │ │ │ │ │ └── properties.js │ │ │ │ ├── puppet │ │ │ │ │ ├── index.html │ │ │ │ │ └── puppet.js │ │ │ │ ├── python │ │ │ │ │ ├── index.html │ │ │ │ │ └── python.js │ │ │ │ ├── q │ │ │ │ │ ├── index.html │ │ │ │ │ └── q.js │ │ │ │ ├── r │ │ │ │ │ ├── index.html │ │ │ │ │ └── r.js │ │ │ │ ├── rpm │ │ │ │ │ ├── changes │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── rpm.js │ │ │ │ ├── rst │ │ │ │ │ ├── index.html │ │ │ │ │ └── rst.js │ │ │ │ ├── ruby │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ruby.js │ │ │ │ │ └── test.js │ │ │ │ ├── rust │ │ │ │ │ ├── index.html │ │ │ │ │ └── rust.js │ │ │ │ ├── sass │ │ │ │ │ ├── index.html │ │ │ │ │ └── sass.js │ │ │ │ ├── scheme │ │ │ │ │ ├── index.html │ │ │ │ │ └── scheme.js │ │ │ │ ├── shell │ │ │ │ │ ├── index.html │ │ │ │ │ ├── shell.js │ │ │ │ │ └── test.js │ │ │ │ ├── sieve │ │ │ │ │ ├── index.html │ │ │ │ │ └── sieve.js │ │ │ │ ├── slim │ │ │ │ │ ├── index.html │ │ │ │ │ ├── slim.js │ │ │ │ │ └── test.js │ │ │ │ ├── smalltalk │ │ │ │ │ ├── index.html │ │ │ │ │ └── smalltalk.js │ │ │ │ ├── smarty │ │ │ │ │ ├── index.html │ │ │ │ │ └── smarty.js │ │ │ │ ├── smartymixed │ │ │ │ │ ├── index.html │ │ │ │ │ └── smartymixed.js │ │ │ │ ├── solr │ │ │ │ │ ├── index.html │ │ │ │ │ └── solr.js │ │ │ │ ├── soy │ │ │ │ │ ├── index.html │ │ │ │ │ └── soy.js │ │ │ │ ├── sparql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sparql.js │ │ │ │ ├── spreadsheet │ │ │ │ │ ├── index.html │ │ │ │ │ └── spreadsheet.js │ │ │ │ ├── sql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sql.js │ │ │ │ ├── stex │ │ │ │ │ ├── index.html │ │ │ │ │ ├── stex.js │ │ │ │ │ └── test.js │ │ │ │ ├── stylus │ │ │ │ │ ├── index.html │ │ │ │ │ └── stylus.js │ │ │ │ ├── tcl │ │ │ │ │ ├── index.html │ │ │ │ │ └── tcl.js │ │ │ │ ├── textile │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── textile.js │ │ │ │ ├── tiddlywiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ ├── tiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ ├── toml │ │ │ │ │ ├── index.html │ │ │ │ │ └── toml.js │ │ │ │ ├── tornado │ │ │ │ │ ├── index.html │ │ │ │ │ └── tornado.js │ │ │ │ ├── turtle │ │ │ │ │ ├── index.html │ │ │ │ │ └── turtle.js │ │ │ │ ├── vb │ │ │ │ │ ├── index.html │ │ │ │ │ └── vb.js │ │ │ │ ├── vbscript │ │ │ │ │ ├── index.html │ │ │ │ │ └── vbscript.js │ │ │ │ ├── velocity │ │ │ │ │ ├── index.html │ │ │ │ │ └── velocity.js │ │ │ │ ├── verilog │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── verilog.js │ │ │ │ ├── xml │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xml.js │ │ │ │ ├── xquery │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xquery.js │ │ │ │ ├── yaml │ │ │ │ │ ├── index.html │ │ │ │ │ └── yaml.js │ │ │ │ └── z80 │ │ │ │ │ ├── index.html │ │ │ │ │ └── z80.js │ │ │ ├── modes.min.js │ │ │ ├── package.json │ │ │ └── theme │ │ │ │ ├── 3024-day.css │ │ │ │ ├── 3024-night.css │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── base16-dark.css │ │ │ │ ├── base16-light.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── colorforth.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── mbo.css │ │ │ │ ├── mdn-like.css │ │ │ │ ├── midnight.css │ │ │ │ ├── monokai.css │ │ │ │ ├── neat.css │ │ │ │ ├── neo.css │ │ │ │ ├── night.css │ │ │ │ ├── paraiso-dark.css │ │ │ │ ├── paraiso-light.css │ │ │ │ ├── pastel-on-dark.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── solarized.css │ │ │ │ ├── the-matrix.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ ├── xq-dark.css │ │ │ │ ├── xq-light.css │ │ │ │ └── zenburn.css │ │ ├── flowchart.min.js │ │ ├── jquery.flowchart.min.js │ │ ├── marked.min.js │ │ ├── prettify.min.js │ │ ├── raphael.min.js │ │ ├── sequence-diagram.min.js │ │ └── underscore.min.js │ │ └── plugins │ │ ├── code-block-dialog │ │ └── code-block-dialog.js │ │ ├── emoji-dialog │ │ ├── emoji-dialog.js │ │ └── emoji.json │ │ ├── goto-line-dialog │ │ └── goto-line-dialog.js │ │ ├── help-dialog │ │ ├── help-dialog.js │ │ └── help.md │ │ ├── html-entities-dialog │ │ ├── html-entities-dialog.js │ │ └── html-entities.json │ │ ├── image-dialog │ │ └── image-dialog.js │ │ ├── link-dialog │ │ └── link-dialog.js │ │ ├── plugin-template.js │ │ ├── preformatted-text-dialog │ │ └── preformatted-text-dialog.js │ │ ├── reference-link-dialog │ │ └── reference-link-dialog.js │ │ ├── table-dialog │ │ └── table-dialog.js │ │ └── test-plugin │ │ └── test-plugin.js └── web.config ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── Example.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin │ ├── admin.blade.php │ ├── admin │ │ └── index.blade.php │ ├── article │ │ ├── create.blade.php │ │ └── index.blade.php │ ├── dashboard │ │ └── index.blade.php │ ├── layout │ │ └── base.blade.php │ └── usermember │ │ └── index.blade.php │ └── vendor │ ├── mail │ ├── html │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── promotion.blade.php │ │ ├── promotion │ │ │ └── button.blade.php │ │ ├── subcopy.blade.php │ │ ├── table.blade.php │ │ └── themes │ │ │ └── default.css │ └── markdown │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── promotion.blade.php │ │ ├── promotion │ │ └── button.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ ├── notifications │ └── email.blade.php │ └── pagination │ ├── bootstrap-4.blade.php │ ├── default.blade.php │ ├── simple-bootstrap-4.blade.php │ └── simple-default.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/.gitignore -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Controllers/Admin/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Repository/AdminRepostiry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/Repository/AdminRepostiry.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/database.php -------------------------------------------------------------------------------- /config/editormd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/editormd.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/dist/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/AdminLTE.css -------------------------------------------------------------------------------- /public/dist/css/skins/_all-skins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/_all-skins.css -------------------------------------------------------------------------------- /public/dist/css/skins/_all-skins.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/_all-skins.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-black-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-black-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-black-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-black-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-black.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-black.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-black.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-blue-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-blue-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-blue-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-blue-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-blue.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-blue.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-green-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-green-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-green-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-green-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-green.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-green.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-purple-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-purple-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-purple-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-purple-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-purple.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-purple.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-purple.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-red-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-red-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-red-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-red-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-red.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-red.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-red.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-yellow-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-yellow-light.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-yellow-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-yellow-light.min.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-yellow.css -------------------------------------------------------------------------------- /public/dist/css/skins/skin-yellow.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/css/skins/skin-yellow.min.css -------------------------------------------------------------------------------- /public/dist/img/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/img/avatar.jpeg -------------------------------------------------------------------------------- /public/dist/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/js/admin.js -------------------------------------------------------------------------------- /public/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/dist/js/demo.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/adminarticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/images/adminarticle.png -------------------------------------------------------------------------------- /public/images/adminimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/images/adminimg.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/editormd/css/customer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/css/customer.css -------------------------------------------------------------------------------- /public/vendor/editormd/css/editormd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/css/editormd.css -------------------------------------------------------------------------------- /public/vendor/editormd/css/editormd.logo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/css/editormd.logo.css -------------------------------------------------------------------------------- /public/vendor/editormd/css/editormd.logo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/css/editormd.logo.min.css -------------------------------------------------------------------------------- /public/vendor/editormd/css/editormd.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/css/editormd.min.css -------------------------------------------------------------------------------- /public/vendor/editormd/css/editormd.preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/css/editormd.preview.css -------------------------------------------------------------------------------- /public/vendor/editormd/css/editormd.preview.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/css/editormd.preview.min.css -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/editormd-logo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/editormd-logo.eot -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/editormd-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/editormd-logo.svg -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/editormd-logo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/editormd-logo.ttf -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/editormd-logo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/editormd-logo.woff -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/vendor/editormd/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/vendor/editormd/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/loading.gif -------------------------------------------------------------------------------- /public/vendor/editormd/images/loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/loading@2x.gif -------------------------------------------------------------------------------- /public/vendor/editormd/images/loading@3x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/loading@3x.gif -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-favicon-16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-favicon-16x16.ico -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-favicon-24x24.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-favicon-24x24.ico -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-favicon-32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-favicon-32x32.ico -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-favicon-48x48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-favicon-48x48.ico -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-favicon-64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-favicon-64x64.ico -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-114x114.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-120x120.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-144x144.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-16x16.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-180x180.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-240x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-240x240.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-24x24.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-320x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-320x320.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-32x32.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-48x48.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-57x57.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-64x64.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-72x72.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/editormd-logo-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/editormd-logo-96x96.png -------------------------------------------------------------------------------- /public/vendor/editormd/images/logos/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/images/logos/vi.png -------------------------------------------------------------------------------- /public/vendor/editormd/js/editormd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/js/editormd.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/AUTHORS -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/LICENSE -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/README.md -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/comment/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/comment/comment.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/comment/continuecomment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/comment/continuecomment.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/dialog/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/dialog/dialog.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/dialog/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/dialog/dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/display/fullscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/display/fullscreen.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/display/fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/display/fullscreen.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/display/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/display/panel.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/display/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/display/placeholder.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/display/rulers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/display/rulers.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/edit/closebrackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/edit/closebrackets.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/edit/closetag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/edit/closetag.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/edit/continuelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/edit/continuelist.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/edit/matchbrackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/edit/matchbrackets.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/edit/matchtags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/edit/matchtags.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/edit/trailingspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/edit/trailingspace.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/fold/brace-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/fold/brace-fold.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/fold/comment-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/fold/comment-fold.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/fold/foldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/fold/foldcode.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/fold/foldgutter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/fold/foldgutter.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/fold/foldgutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/fold/foldgutter.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/fold/indent-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/fold/indent-fold.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/fold/markdown-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/fold/markdown-fold.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/fold/xml-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/fold/xml-fold.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/hint/anyword-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/hint/anyword-hint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/hint/css-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/hint/css-hint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/hint/html-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/hint/html-hint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/hint/javascript-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/hint/javascript-hint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/hint/show-hint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/hint/show-hint.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/hint/show-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/hint/show-hint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/hint/sql-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/hint/sql-hint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/hint/xml-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/hint/xml-hint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/lint/coffeescript-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/lint/coffeescript-lint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/lint/css-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/lint/css-lint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/lint/javascript-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/lint/javascript-lint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/lint/json-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/lint/json-lint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/lint/lint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/lint/lint.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/lint/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/lint/lint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/lint/yaml-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/lint/yaml-lint.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/merge/merge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/merge/merge.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/merge/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/merge/merge.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/mode/loadmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/mode/loadmode.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/mode/multiplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/mode/multiplex.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/mode/multiplex_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/mode/multiplex_test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/mode/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/mode/overlay.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/mode/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/mode/simple.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/runmode/colorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/runmode/colorize.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/runmode/runmode-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/runmode/runmode-standalone.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/runmode/runmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/runmode/runmode.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/runmode/runmode.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/runmode/runmode.node.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/scroll/annotatescrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/scroll/annotatescrollbar.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/scroll/scrollpastend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/scroll/scrollpastend.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/scroll/simplescrollbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/scroll/simplescrollbars.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/scroll/simplescrollbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/scroll/simplescrollbars.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/search/match-highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/search/match-highlighter.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/search/matchesonscrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/search/matchesonscrollbar.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/search/matchesonscrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/search/matchesonscrollbar.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/search/search.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/search/searchcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/search/searchcursor.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/selection/active-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/selection/active-line.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/selection/mark-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/selection/mark-selection.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/selection/selection-pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/selection/selection-pointer.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/tern/tern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/tern/tern.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/tern/tern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/tern/tern.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/tern/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/tern/worker.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addon/wrap/hardwrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addon/wrap/hardwrap.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/addons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/addons.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/bower.json -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/codemirror.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/codemirror.min.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/codemirror.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/codemirror.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/lib/codemirror.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/lib/codemirror.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/apl/apl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/apl/apl.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/apl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/apl/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/asterisk/asterisk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/asterisk/asterisk.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/asterisk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/asterisk/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/clike/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/clike/clike.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/clike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/clike/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/clike/scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/clike/scala.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/clojure/clojure.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/clojure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/clojure/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/cobol/cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/cobol/cobol.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/cobol/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/cobol/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/coffeescript/coffeescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/coffeescript/coffeescript.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/coffeescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/coffeescript/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/commonlisp/commonlisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/commonlisp/commonlisp.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/commonlisp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/commonlisp/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/css/css.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/css/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/css/less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/css/less.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/css/less_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/css/less_test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/css/scss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/css/scss.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/css/scss_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/css/scss_test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/css/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/css/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/cypher/cypher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/cypher/cypher.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/cypher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/cypher/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/d/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/d/d.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/d/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/dart/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/dart/dart.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/dart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/dart/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/diff/diff.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/diff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/diff/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/django/django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/django/django.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/django/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/django/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/dockerfile/dockerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/dockerfile/dockerfile.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/dockerfile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/dockerfile/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/dtd/dtd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/dtd/dtd.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/dtd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/dtd/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/dylan/dylan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/dylan/dylan.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/dylan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/dylan/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/ebnf/ebnf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/ebnf/ebnf.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/ebnf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/ebnf/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/ecl/ecl.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/ecl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/ecl/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/eiffel/eiffel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/eiffel/eiffel.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/eiffel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/eiffel/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/erlang/erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/erlang/erlang.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/erlang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/erlang/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/forth/forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/forth/forth.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/forth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/forth/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/fortran/fortran.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/fortran/fortran.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/fortran/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/fortran/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/gas/gas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/gas/gas.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/gas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/gas/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/gfm/gfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/gfm/gfm.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/gfm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/gfm/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/gfm/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/gfm/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/gherkin/gherkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/gherkin/gherkin.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/gherkin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/gherkin/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/go/go.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/go/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/groovy/groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/groovy/groovy.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/groovy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/groovy/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/haml/haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/haml/haml.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/haml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/haml/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/haml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/haml/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/haskell/haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/haskell/haskell.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/haskell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/haskell/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/haxe/haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/haxe/haxe.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/haxe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/haxe/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/htmlembedded/htmlembedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/htmlembedded/htmlembedded.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/htmlembedded/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/htmlembedded/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/htmlmixed/htmlmixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/htmlmixed/htmlmixed.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/htmlmixed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/htmlmixed/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/http/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/http/http.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/http/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/http/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/idl/idl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/idl/idl.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/idl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/idl/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/jade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/jade/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/jade/jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/jade/jade.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/javascript/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/javascript/javascript.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/javascript/json-ld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/javascript/json-ld.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/javascript/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/javascript/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/javascript/typescript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/javascript/typescript.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/jinja2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/jinja2/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/jinja2/jinja2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/jinja2/jinja2.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/julia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/julia/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/julia/julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/julia/julia.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/kotlin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/kotlin/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/kotlin/kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/kotlin/kotlin.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/livescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/livescript/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/livescript/livescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/livescript/livescript.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/lua/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/lua/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/lua/lua.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/markdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/markdown/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/markdown/markdown.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/markdown/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/markdown/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/meta.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/mirc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/mirc/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/mirc/mirc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/mirc/mirc.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/mllike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/mllike/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/mllike/mllike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/mllike/mllike.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/modelica/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/modelica/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/modelica/modelica.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/modelica/modelica.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/nginx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/nginx/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/nginx/nginx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/nginx/nginx.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/ntriples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/ntriples/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/ntriples/ntriples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/ntriples/ntriples.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/octave/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/octave/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/octave/octave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/octave/octave.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/pascal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/pascal/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/pascal/pascal.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/pegjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/pegjs/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/pegjs/pegjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/pegjs/pegjs.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/perl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/perl/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/perl/perl.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/php/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/php/php.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/php/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/php/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/pig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/pig/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/pig/pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/pig/pig.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/properties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/properties/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/properties/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/properties/properties.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/puppet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/puppet/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/puppet/puppet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/puppet/puppet.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/python/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/python/python.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/q/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/q/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/q/q.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/r/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/r/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/r/r.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/rpm/changes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/rpm/changes/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/rpm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/rpm/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/rpm/rpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/rpm/rpm.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/rst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/rst/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/rst/rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/rst/rst.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/ruby/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/ruby/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/ruby/ruby.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/ruby/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/ruby/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/rust/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/rust/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/rust/rust.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/sass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/sass/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/sass/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/sass/sass.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/scheme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/scheme/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/scheme/scheme.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/shell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/shell/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/shell/shell.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/shell/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/shell/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/sieve/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/sieve/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/sieve/sieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/sieve/sieve.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/slim/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/slim/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/slim/slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/slim/slim.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/slim/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/slim/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/smalltalk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/smalltalk/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/smalltalk/smalltalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/smalltalk/smalltalk.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/smarty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/smarty/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/smarty/smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/smarty/smarty.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/smartymixed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/smartymixed/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/smartymixed/smartymixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/smartymixed/smartymixed.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/solr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/solr/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/solr/solr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/solr/solr.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/soy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/soy/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/soy/soy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/soy/soy.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/sparql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/sparql/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/sparql/sparql.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/spreadsheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/spreadsheet/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/spreadsheet/spreadsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/spreadsheet/spreadsheet.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/sql/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/sql/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/sql/sql.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/stex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/stex/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/stex/stex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/stex/stex.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/stex/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/stex/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/stylus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/stylus/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/stylus/stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/stylus/stylus.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tcl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tcl/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tcl/tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tcl/tcl.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/textile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/textile/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/textile/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/textile/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/textile/textile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/textile/textile.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tiddlywiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tiddlywiki/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tiddlywiki/tiddlywiki.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tiddlywiki/tiddlywiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tiddlywiki/tiddlywiki.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tiki/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tiki/tiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tiki/tiki.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tiki/tiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tiki/tiki.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/toml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/toml/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/toml/toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/toml/toml.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tornado/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tornado/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/tornado/tornado.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/tornado/tornado.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/turtle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/turtle/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/turtle/turtle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/turtle/turtle.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/vb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/vb/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/vb/vb.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/vbscript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/vbscript/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/vbscript/vbscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/vbscript/vbscript.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/velocity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/velocity/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/velocity/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/velocity/velocity.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/verilog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/verilog/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/verilog/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/verilog/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/verilog/verilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/verilog/verilog.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/xml/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/xml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/xml/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/xml/xml.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/xquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/xquery/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/xquery/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/xquery/test.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/xquery/xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/xquery/xquery.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/yaml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/yaml/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/yaml/yaml.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/z80/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/z80/index.html -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/mode/z80/z80.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/mode/z80/z80.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/modes.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/modes.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/package.json -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/3024-day.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/3024-day.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/3024-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/3024-night.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/ambiance-mobile.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/ambiance.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/base16-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/base16-dark.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/base16-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/base16-light.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/blackboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/blackboard.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/cobalt.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/colorforth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/colorforth.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/eclipse.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/elegant.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/erlang-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/erlang-dark.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/lesser-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/lesser-dark.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/mbo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/mbo.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/mdn-like.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/mdn-like.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/midnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/midnight.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/monokai.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/neat.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/neo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/neo.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/night.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/paraiso-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/paraiso-dark.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/paraiso-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/paraiso-light.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/pastel-on-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/pastel-on-dark.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/rubyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/rubyblue.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/solarized.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/the-matrix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/the-matrix.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/tomorrow-night-bright.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/tomorrow-night-bright.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/tomorrow-night-eighties.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/twilight.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/vibrant-ink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/vibrant-ink.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/xq-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/xq-dark.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/xq-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/xq-light.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/codemirror/theme/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/codemirror/theme/zenburn.css -------------------------------------------------------------------------------- /public/vendor/editormd/lib/flowchart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/flowchart.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/jquery.flowchart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/jquery.flowchart.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/marked.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/prettify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/prettify.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/raphael.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/sequence-diagram.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/sequence-diagram.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/lib/underscore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/lib/underscore.min.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/code-block-dialog/code-block-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/code-block-dialog/code-block-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/emoji-dialog/emoji-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/emoji-dialog/emoji-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/emoji-dialog/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/emoji-dialog/emoji.json -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/goto-line-dialog/goto-line-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/goto-line-dialog/goto-line-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/help-dialog/help-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/help-dialog/help-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/help-dialog/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/help-dialog/help.md -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/html-entities-dialog/html-entities-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/html-entities-dialog/html-entities-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/html-entities-dialog/html-entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/html-entities-dialog/html-entities.json -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/image-dialog/image-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/image-dialog/image-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/link-dialog/link-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/link-dialog/link-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/plugin-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/plugin-template.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/preformatted-text-dialog/preformatted-text-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/preformatted-text-dialog/preformatted-text-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/reference-link-dialog/reference-link-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/reference-link-dialog/reference-link-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/table-dialog/table-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/table-dialog/table-dialog.js -------------------------------------------------------------------------------- /public/vendor/editormd/plugins/test-plugin/test-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/vendor/editormd/plugins/test-plugin/test-plugin.js -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/components/Example.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/assets/js/components/Example.vue -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/admin/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/admin/admin.blade.php -------------------------------------------------------------------------------- /resources/views/admin/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/admin/admin/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/article/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/admin/article/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/article/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/admin/article/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/admin/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/layout/base.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/admin/layout/base.blade.php -------------------------------------------------------------------------------- /resources/views/admin/usermember/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/admin/usermember/index.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/footer.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/panel.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/promotion.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/promotion.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/promotion/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/promotion/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/subcopy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/subcopy.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/table.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/html/themes/default.css -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/markdown/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/markdown/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/markdown/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/markdown/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/mail/markdown/promotion/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/notifications/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/notifications/email.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/pagination/bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/pagination/simple-bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/resources/views/vendor/pagination/simple-default.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelChen/Background-Template-For-Laravel5/HEAD/yarn.lock --------------------------------------------------------------------------------