8000 GitHub - pauldeden/keystone: A very simple, yet flexible, dynamic website framework
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

pauldeden/keystone

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Keystone Is...

  • An easy-to learn Python web framework
  • That puts templates first
  • That builds on high quality components
  • That will only take minutes to learn
  • That encourages best practices

Keystone in 30 seconds or less

$ mkdir helloworld
$ cat << EOF > helloworld/index.ks
name = 'World'
----
<!doctype html>
<html>
  <head>
    <title>Welcome to Keystone</title>
  </head>
  <body>
    <p>Hello, {{name}}</p>
  </body>
</html>
EOF
$ keystone helloworld
$ open http://localhost:5000/

helloworld.png


Build Status

About

A very simple, yet flexible, dynamic website framework

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%
0