TMC - 9 Digital Tech Semester 1
Toggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto mode

More routes

from bottle import route, run

@route('/')
def index():
    return """
        <h1>Hello, world!</h1>
        Go to <a href="/other">the other page</a>.
    """

@route('/other')
def other_page():
    return """
        <h1>The other page</h1>
        Go back to <a href="/">the home page</a>.
    """

run(reloader=True, debug=True)