diff --git a/archive/archive.html b/archive/archive.html index 70304c8..71062bd 100644 --- a/archive/archive.html +++ b/archive/archive.html @@ -12,7 +12,17 @@ + + + + + + + + + + @@ -42,9 +52,9 @@ @@ -67,149 +77,10 @@

Search for Notes

-
-
- -
-
-
- PlaceholderThumbnail -
-

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

-
-
- - -
- 9 mins -
-
-
-
-
-
- PlaceholderThumbnail -
-

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

-
-
- - -
- 9 mins -
-
-
-
-
-
- PlaceholderThumbnail -
-

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

-
-
- - -
- 9 mins -
-
-
-
- -
-
- PlaceholderThumbnail -
-

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

-
-
- - -
- 9 mins -
-
-
-
-
-
- PlaceholderThumbnail -
-

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

-
-
- - -
- 9 mins -
-
-
-
-
-
- PlaceholderThumbnail -
-

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

-
-
- - -
- 9 mins -
-
-
-
- -
-
- PlaceholderThumbnail -
-

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

-
-
- - -
- 9 mins -
-
-
-
-
-
- PlaceholderThumbnail -
-

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

-
-
- - -
- 9 mins -
-
-
-
-
-
- PlaceholderThumbnail -
-

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

-
-
- - -
- 9 mins -
-
-
-
-
-
+
+
+
+

@@ -265,6 +136,7 @@
Subscribe to our newsletter
+ \ No newline at end of file diff --git a/archive/archive.js b/archive/archive.js new file mode 100644 index 0000000..e680999 --- /dev/null +++ b/archive/archive.js @@ -0,0 +1,29 @@ +function note_cards(note_desc, time, view_link, download_link){ + return ` +
+
+ PlaceholderThumbnail +
+

`+ note_desc +`

+
+
+ View + Download +
+ `+ time +` +
+
+
+
`; +} + +container = document.getElementById('cards'); +let desc = "This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer."; +let time = "9 min" +let vlink = "#"; +let dlink = "#"; + +for (let i = 0; i < 9; i++) { + let card = note_cards(desc,time,vlink,dlink); + container.innerHTML += card; +} \ No newline at end of file diff --git a/index.html b/index.html index e6173e4..3c53f37 100644 --- a/index.html +++ b/index.html @@ -10,24 +10,22 @@ - + + + + + + + + + + + + +
diff --git a/login/forgot.html b/login/html/forgot.html similarity index 83% rename from login/forgot.html rename to login/html/forgot.html index 5debb10..c7b5a3f 100644 --- a/login/forgot.html +++ b/login/html/forgot.html @@ -6,8 +6,8 @@ Forgot‐Password - - + +
@@ -15,8 +15,8 @@
@@ -43,7 +43,7 @@

Forgot Password

@@ -51,6 +51,6 @@

Forgot Password

- + \ No newline at end of file diff --git a/login/login.html b/login/html/login.html similarity index 89% rename from login/login.html rename to login/html/login.html index abb0798..6ee8b7b 100644 --- a/login/login.html +++ b/login/html/login.html @@ -6,8 +6,8 @@ Login - - + + @@ -16,8 +16,8 @@
@@ -63,7 +63,7 @@

Login

@@ -73,6 +73,6 @@

Login

- + diff --git a/login/register.html b/login/html/register.html similarity index 89% rename from login/register.html rename to login/html/register.html index 0850b64..410c34b 100644 --- a/login/register.html +++ b/login/html/register.html @@ -6,8 +6,8 @@ Registration - - + +
@@ -15,8 +15,8 @@
@@ -69,7 +69,7 @@

Register

@@ -78,6 +78,6 @@

Register

- + \ No newline at end of file diff --git a/login/reset.html b/login/html/reset.html similarity index 84% rename from login/reset.html rename to login/html/reset.html index 871f061..070db9b 100644 --- a/login/reset.html +++ b/login/html/reset.html @@ -6,8 +6,8 @@ Reset - - + +
@@ -15,8 +15,8 @@
@@ -43,7 +43,7 @@

Reset Password

@@ -52,6 +52,6 @@

Reset Password

- + \ No newline at end of file diff --git a/login/css/login.css b/login/login.css similarity index 100% rename from login/css/login.css rename to login/login.css diff --git a/login/js/login.js b/login/login.js similarity index 100% rename from login/js/login.js rename to login/login.js