Skip to content

Commit

Permalink
refactor(structure): Add Basic Folder Structure for Project
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed Oct 20, 2024
1 parent 0096790 commit 5a51c96
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 0 deletions.
Empty file added app.py
Empty file.
Empty file added app/models/__init__.py
Empty file.
Empty file added app/routes/__init__.py
Empty file.
Empty file added app/static/assets/.gitkeep
Empty file.
Empty file added app/static/css/style.css
Empty file.
Empty file added app/static/js/script.js
Empty file.
13 changes: 13 additions & 0 deletions app/templates/base.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
<script src="{{ url_for('static', filename='js/script.js') }}" defer></script>
</body>
</html>
9 changes: 9 additions & 0 deletions app/templates/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{% extends 'base.html' %}

{% block head %}
<title> JustiChain </title>
{% endblock %}

{% block body %}
<h1> Hello World! </h1>
{% endblock %}
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
asciidoc==10.2.0
packaging==24.0
pyparsing==3.1.2
setuptools==70.3.0

0 comments on commit 5a51c96

Please sign in to comment.