Landing Page Builder app built with Meteor. Architecture based on Meteor-Landing.
Demo here: lpb.meteor.com.
- Markdown editor for home and posts views
- Edit header and footer content
- Admin login
Make sure Meteor is installed and up to date or run:
curl https://install.meteor.com/ | sh
git clone [email protected]:amazingBastard/landing-page-builder.git
cd landing-page-builder
meteor
It is highly recommended to use Meteor Up for easy deployments. Have a look at the repository for more information.
Meteor cannot do SEO
This statement is only partially true, since there is a package called ms-seo, which has a lot of neat little tricks to help web crawlers notice your app the way you want them to. Use constants under client/lib/constants.js for the app. Change SEO settings inside the routes like that.
Router.route('/about', function () {
this.render('about');
// Using the app constants
SEO.set({ title: 'About -' + Meteor.App.NAME, og: {...} });
});
The browser-policy adds rules to deny all operations from external URLs. This helps dealing with clickjacking and other XSS methods used to attack the client. To whitelist a url, add following to server/config/security.js
BrowserPolicy.content.allowOriginForAll(YOUR_URL);
- Meteor Core
- Routing
- Accounts
- Collections
- UI and UX
- Security
- SEO
- Development
The "insecure" and "autopublish" packages are removed by default (they make your app vulnerable).
client/ # Client folder
compatibility/ # Libraries which create a global variable
config/ # Configuration files (on the client)
lib/ # Library files that get executed first
startup/ # Javascript files on Meteor.startup()
stylesheets # LESS files
modules/ # Meant for components, such as form and more
views/ # Contains all views
common/ # General purpose html templates
model/ # Model files, for each Meteor.Collection
private/ # Private files
public/ # Public files
routes/ # All routes
server/ # Server folder
fixtures/ # Meteor.Collection fixtures defined
lib/ # Server side library folder
publications/ # Collection publications
startup/ # On server startup
This project has an MIT License, see the LICENSE.txt for more information.