feat: Add route for Open Source Compliance page
Added a new route `/oss-compliance` that renders the `oss_compliance.html` template
This commit is contained in:
parent
52f947c11b
commit
7d8bab3b8f
2 changed files with 14 additions and 0 deletions
|
|
@ -24,6 +24,10 @@ def pricing():
|
||||||
def solutions():
|
def solutions():
|
||||||
return render_template('solutions.html')
|
return render_template('solutions.html')
|
||||||
|
|
||||||
|
@main.route('/oss-compliance')
|
||||||
|
def oss_compliance():
|
||||||
|
return render_template('oss_compliance.html')
|
||||||
|
|
||||||
@main.route('/about')
|
@main.route('/about')
|
||||||
def about():
|
def about():
|
||||||
return render_template('about.html')
|
return render_template('about.html')
|
||||||
|
|
|
||||||
10
app/templates/oss_compliance.html
Normal file
10
app/templates/oss_compliance.html
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Title</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue