DedrisFrameworkDedrisFramework

← Templates  /  Blank Starter

Blank Starter

MinimalBaseClean slate

The simplest possible starting point: a single-page Cordova project with dedris.css already linked and the deviceready hook in place. No navigation, no opinions — just a clean canvas to build exactly what you want.

What's included

Single page with a centered welcome message.

DedrisFramework styles pre-linked and ready.

deviceready hook so you can call plugins safely.

Zero extra dependencies — nothing to remove.

Use this template

terminal
cordova create myApp com.dedris.myapp MyApp --template cordova-template-dedris-blank
cd myApp
cordova run android

Project structure

www/ ├── index.html # your single page ├── css/dedris.css # DedrisFramework styles └── js/app.js # deviceready hook

The starting page

www/index.html
<link rel="stylesheet" href="css/dedris.css">

<main class="dx-container">
  <h1>Hello, DedrisFramework</h1>
  <button class="dx-btn dx-btn--primary">Get started</button>
</main>
← All templates Start building

Minimal single page preview