diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-18 16:48:34 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-18 16:48:34 +0000 |
commit | 4e21482bf6dd987f1df5f25743bd935986fdbd8e (patch) | |
tree | 6f6f089308783372f019e7b89582221d67f59bc0 /Main/wwwroot | |
parent | 92e5978cf1cf54ff587ee93dcbcb5f5dc05ea55c (diff) | |
download | newsaggregator-4e21482bf6dd987f1df5f25743bd935986fdbd8e.tar.gz newsaggregator-4e21482bf6dd987f1df5f25743bd935986fdbd8e.tar.bz2 newsaggregator-4e21482bf6dd987f1df5f25743bd935986fdbd8e.zip |
Moved wwwroot to it's own folder
Diffstat (limited to 'Main/wwwroot')
-rw-r--r-- | Main/wwwroot/css/main.css | 0 | ||||
-rw-r--r-- | Main/wwwroot/index.html | 18 | ||||
-rw-r--r-- | Main/wwwroot/scripts/main.ts | 8 | ||||
-rw-r--r-- | Main/wwwroot/tsconfig.json | 8 |
4 files changed, 0 insertions, 34 deletions
diff --git a/Main/wwwroot/css/main.css b/Main/wwwroot/css/main.css deleted file mode 100644 index e69de29..0000000 --- a/Main/wwwroot/css/main.css +++ /dev/null diff --git a/Main/wwwroot/index.html b/Main/wwwroot/index.html deleted file mode 100644 index cd392d4..0000000 --- a/Main/wwwroot/index.html +++ /dev/null @@ -1,18 +0,0 @@ -<!DOCTYPE html> -<html> - -<head> - <meta charset="utf-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <title>Page Title</title> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <link rel="stylesheet" type="text/css" media="screen" href="css/main.css"> - <script src="js/main.js"></script> -</head> - -<body> - <div class="app"> - </div> -</body> - -</html>
\ No newline at end of file diff --git a/Main/wwwroot/scripts/main.ts b/Main/wwwroot/scripts/main.ts deleted file mode 100644 index 77a80d3..0000000 --- a/Main/wwwroot/scripts/main.ts +++ /dev/null @@ -1,8 +0,0 @@ -var root = document.getElementsByClassName('app'); - -class Article { - Title: HTMLElement; - Description: string; - ArticleLink: string; - Image: HTMLElement; -}
\ No newline at end of file diff --git a/Main/wwwroot/tsconfig.json b/Main/wwwroot/tsconfig.json deleted file mode 100644 index 89d01c4..0000000 --- a/Main/wwwroot/tsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "module": "commonjs", - "target": "esnext", - "sourceMap": true, - "outDir": "js/" - } -}
\ No newline at end of file |