mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-10 04:08:34 -06:00
added comments for when placeholders are removed
This commit is contained in:
@@ -5,8 +5,10 @@ main = Blueprint('main', __name__)
|
||||
|
||||
@main.route('/')
|
||||
def index():
|
||||
return 'Index'
|
||||
# return render_template('index.html')
|
||||
return 'Index' # placeholder
|
||||
|
||||
@main.route('/profile')
|
||||
def profile():
|
||||
return 'Profile'
|
||||
# return render_template('profile.html')
|
||||
return 'Profile' # placeholder
|
||||
Reference in New Issue
Block a user