move html and css to source folder

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2022-11-13 22:33:00 +00:00
parent bc4073b10f
commit 39cb507bc5
8 changed files with 7 additions and 7 deletions

View File

@ -8,14 +8,14 @@
<title>Food Journal</title>
<!-- Recipe Card Custom Element -->
<script src="/source/assets/scripts/ReviewCard.js" type="module"></script>
<script src="assets/scripts/ReviewCard.js" type="module"></script>
<!-- Main Stylesheets & Scripts -->
<!-- Temporarily commented out reset.css due to furthur discussion needed on the values of the default config-->
<!-- <link rel="stylesheet" href="/static/reset.css" /> -->
<link rel="stylesheet" href="./static/CreatePage.css" />
<script src="/source/assets/scripts/main.js" type="module"></script>
<script src="assets/scripts/main.js" type="module"></script>
</head>

View File

@ -7,14 +7,14 @@
<title>Food Journal</title>
<!-- Recipe Card Custom Element -->
<script src="/source/assets/scripts/ReviewCard.js" type="module"></script>
<script src="assets/scripts/ReviewCard.js" type="module"></script>
<!-- Main Stylesheets & Scripts -->
<!-- Temporarily commented out reset.css due to furthur discussion needed on the values of the default config-->
<!-- <link rel="stylesheet" href="/static/reset.css" /> -->
<link rel="stylesheet" href="./static/ReviewCard.css" />
<script src="/source/assets/scripts/ReviewDetails.js" type="module"></script>
<script src="assets/scripts/ReviewDetails.js" type="module"></script>
</head>
<body>

View File

@ -8,14 +8,14 @@
<title>Food Journal</title>
<!-- Recipe Card Custom Element -->
<script src="/source/assets/scripts/ReviewCard.js" type="module"></script>
<script src="assets/scripts/ReviewCard.js" type="module"></script>
<!-- Main Stylesheets & Scripts -->
<!-- Temporarily commented out reset.css due to furthur discussion needed on the values of the default config-->
<!-- <link rel="stylesheet" href="/static/reset.css" /> -->
<link rel="stylesheet" href="./static/ReviewCard.css" />
<script src="/source/assets/scripts/main.js" type="module"></script>
<script src="assets/scripts/main.js" type="module"></script>
</head>
<body>

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Food Journal</title>
<script src="/source/assets/scripts/reviewpage.js" type="module"></script>
<script src="assets/scripts/reviewpage.js" type="module"></script>
</head>
<body>
<h1>Current Review:</h1>

View File