modern #2

Merged
absurdo merged 38 commits from modern into master 2025-03-15 00:00:11 +00:00
Showing only changes of commit f94d6fbd04 - Show all commits

View file

@ -1,14 +1,14 @@
from paramecio.citoplasma.mtemplates import env_theme, PTemplate from paramecio.citoplasma.mtemplates import env_theme, PTemplate
from paramecio.citoplasma.urls import make_url from paramecio.citoplasma.urls import make_url
from bottle import route, request from bottle import request
from settings import config from settings import config
from paramecio.wsgiapp import app
env=env_theme(__file__) env=env_theme(__file__)
t=PTemplate(env)
@route('/example') @app.route('/example')
def home(): def home():
t=PTemplate(env)
return "Hello World!!" return "Hello World!!"