diff --git a/templates/.recycle/Movies-Website-main/LICENSE b/templates/.recycle/Movies-Website-main/LICENSE deleted file mode 100644 index fdddb29..0000000 --- a/templates/.recycle/Movies-Website-main/LICENSE +++ /dev/null @@ -1,24 +0,0 @@ -This is free and unencumbered software released into the public domain. - -Anyone is free to copy, modify, publish, use, compile, sell, or -distribute this software, either in source code form or as a compiled -binary, for any purpose, commercial or non-commercial, and by any -means. - -In jurisdictions that recognize copyright laws, the author or authors -of this software dedicate any and all copyright interest in the -software to the public domain. We make this dedication for the benefit -of the public at large and to the detriment of our heirs and -successors. We intend this dedication to be an overt act of -relinquishment in perpetuity of all present and future rights to this -software under copyright law. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -For more information, please refer to diff --git a/templates/.recycle/Movies-Website-main/README.md b/templates/.recycle/Movies-Website-main/README.md deleted file mode 100644 index 2d2a961..0000000 --- a/templates/.recycle/Movies-Website-main/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# Movies-Website-Redesign -Movies website Redesign with, - -1. Responsive View, -2. Sticky Menu, -3. Awesome Menu, -4. Sticky Side Bar, -5. Hover Transition, -6. Pop-Over Animation, -7. Slider, -8. Day & Night View. - -Live Preview: https://mhmiyazi.github.io/Movies-Website/ -# Preview: -# Dark Theme: -MH Miyazi's Design Full Preview -

Light Theme:

-MH Miyazi's Design Full Preview - diff --git a/templates/.recycle/Movies-Website-main/_config.yml b/templates/.recycle/Movies-Website-main/_config.yml deleted file mode 100644 index c419263..0000000 --- a/templates/.recycle/Movies-Website-main/_config.yml +++ /dev/null @@ -1 +0,0 @@ -theme: jekyll-theme-cayman \ No newline at end of file diff --git a/templates/.restore/.cascadr/.trash/cascadr (copy 1).py b/templates/.restore/.cascadr/.trash/cascadr (copy 1).py deleted file mode 100755 index 258656e..0000000 --- a/templates/.restore/.cascadr/.trash/cascadr (copy 1).py +++ /dev/null @@ -1,136 +0,0 @@ -import re - -import sys - -fileToUpdate = sys.argv[1] - -print(fileToUpdate) - -nodeOpenName="22222" - -nodeCloseName="44444" - -def replaceCSSIncludes(): - - templateSectionBegin="" - - templateSectionEnd="" - - with open('templates/html-includes-styling.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName, substitutionContent, ddd, flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -def replaceJavascriptIncludes(): - - templateSectionBegin="" - - templateSectionEnd="" - - with open('templates/body-javascript-includes.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName,substitutionContent,ddd,flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -def updateSideBarDesktop(): - - templateSectionBegin="" - - templateSectionEnd="" - - with open('templates/navigation-sidebar-desktop.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName,substitutionContent,ddd,flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -def updateSideBarMobile(): - - templateSectionBegin="" - - templateSectionEnd="" - - with open('templates/navigation-sidebar-mobile.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName,substitutionContent,ddd,flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -################################################################### -## -## driver -## -################################################################### - -##replaceCSSIncludes() - -replaceJavascriptIncludes() - -##updateSideBarDesktop() - -##updateSideBarMobile() diff --git a/templates/.restore/.cascadr/cascadr.bash b/templates/.restore/.cascadr/cascadr.bash deleted file mode 100755 index 63512b2..0000000 --- a/templates/.restore/.cascadr/cascadr.bash +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -sourceDirectory="../" - -appName="cascadr.py" - -## - -echo "##" -echo "## start cascadr template work" -echo "##" - -find $sourceDirectory -iname "*.html" -exec python3 $appName {} \; diff --git a/templates/.restore/.cascadr/cascadr.py b/templates/.restore/.cascadr/cascadr.py deleted file mode 100644 index 1c8cab3..0000000 --- a/templates/.restore/.cascadr/cascadr.py +++ /dev/null @@ -1,194 +0,0 @@ -import re - -import sys - -fileToUpdate = sys.argv[1] - -print(fileToUpdate) - -nodeOpenName="22222" - -nodeCloseName="44444" - -def cascadeStylingIncludes(): - - templateSectionBegin="" - - templateSectionEnd="" - - with open('templates/head.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName,substitutionContent,ddd,flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -def cascadeJavascriptIncludes(): - - templateSectionBegin="" - - templateSectionEnd="" - - with open('templates/body-javascript-includes.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName,substitutionContent,ddd,flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -def cascadeFooterContent(): - - templateSectionBegin="" - - templateSectionEnd="" - - with open('templates/body-footer-content.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName,substitutionContent,ddd,flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -def cascadeTopNavigation(): - - templateSectionBegin="" - - templateSectionEnd=" " - - with open('templates/navigation-top-menu.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName,substitutionContent,ddd,flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -def cascadeSideNavigation(): - - templateSectionBegin="" - - templateSectionEnd="" - - with open('templates/navigation-side-menu.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName,substitutionContent,ddd,flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -def cascadeFlyoutContent(): - - templateSectionBegin="" - - templateSectionEnd="" - - with open('templates/body-flyout-content.template') as templateFile: - - substitutionContent = templateFile.read() - - with open(fileToUpdate) as targetSubstitutionFile: - s = targetSubstitutionFile.read() - - ddd=s - - ddd=re.sub(templateSectionBegin, templateSectionBegin+nodeOpenName, ddd, flags=re.DOTALL) - - ddd=re.sub(templateSectionEnd, nodeCloseName+templateSectionEnd, ddd, flags=re.DOTALL) - - ddd=re.sub(nodeOpenName+".*"+nodeCloseName,substitutionContent,ddd,flags=re.DOTALL) - - f = open(fileToUpdate, "w") - - f.write(ddd) - - f.close() - -################################################################### -## -## driver -## -################################################################### - -cascadeStylingIncludes() - -##cascadeJavascriptIncludes() - -##cascadeFooterContent() - -##cascadeTopNavigation() - -##cascadeSideNavigation() - -##cascadeFlyoutContent() -##updateSideBarDesktop() - -##updateSideBarMobile() diff --git a/templates/.restore/.cascadr/templates/.trash/.trash/navigation-sidebar-desktop.template b/templates/.restore/.cascadr/templates/.trash/.trash/navigation-sidebar-desktop.template deleted file mode 100755 index 87dee0e..0000000 --- a/templates/.restore/.cascadr/templates/.trash/.trash/navigation-sidebar-desktop.template +++ /dev/null @@ -1,278 +0,0 @@ - - diff --git a/templates/.restore/.cascadr/templates/.trash/.trash/navigation-sidebar-mobile.template b/templates/.restore/.cascadr/templates/.trash/.trash/navigation-sidebar-mobile.template deleted file mode 100755 index ed28ca8..0000000 --- a/templates/.restore/.cascadr/templates/.trash/.trash/navigation-sidebar-mobile.template +++ /dev/null @@ -1,538 +0,0 @@ - - -
- -
-
-
- - - -
-
-
- -
- -
-
-
    - -
  • - -
  • - -
  • - - -
  • - -
  • - - -
  • -
-
-
diff --git a/templates/.restore/.cascadr/templates/.trash/body-flyout-content.template b/templates/.restore/.cascadr/templates/.trash/body-flyout-content.template deleted file mode 100755 index 9d39721..0000000 --- a/templates/.restore/.cascadr/templates/.trash/body-flyout-content.template +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/templates/.restore/.cascadr/templates/.trash/body-footer-content.template b/templates/.restore/.cascadr/templates/.trash/body-footer-content.template deleted file mode 100755 index 3405e5b..0000000 --- a/templates/.restore/.cascadr/templates/.trash/body-footer-content.template +++ /dev/null @@ -1,15 +0,0 @@ - diff --git a/templates/.restore/.cascadr/templates/.trash/body-javascript-includes.template b/templates/.restore/.cascadr/templates/.trash/body-javascript-includes.template deleted file mode 100755 index c073751..0000000 --- a/templates/.restore/.cascadr/templates/.trash/body-javascript-includes.template +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/templates/.restore/.cascadr/templates/.trash/html-includes-styling.template b/templates/.restore/.cascadr/templates/.trash/html-includes-styling.template deleted file mode 100755 index 2890488..0000000 --- a/templates/.restore/.cascadr/templates/.trash/html-includes-styling.template +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/templates/.restore/.cascadr/templates/.trash/navigation-side-menu.template b/templates/.restore/.cascadr/templates/.trash/navigation-side-menu.template deleted file mode 100755 index c983820..0000000 --- a/templates/.restore/.cascadr/templates/.trash/navigation-side-menu.template +++ /dev/null @@ -1,188 +0,0 @@ - - - diff --git a/templates/.restore/.cascadr/templates/.trash/navigation-top-menu.template b/templates/.restore/.cascadr/templates/.trash/navigation-top-menu.template deleted file mode 100755 index e53e48b..0000000 --- a/templates/.restore/.cascadr/templates/.trash/navigation-top-menu.template +++ /dev/null @@ -1,68 +0,0 @@ - diff --git a/templates/.restore/.cascadr/templates/head.template b/templates/.restore/.cascadr/templates/head.template deleted file mode 100755 index 42f2098..0000000 --- a/templates/.restore/.cascadr/templates/head.template +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/templates/.restore/.cascadr/templates/sidebar.template b/templates/.restore/.cascadr/templates/sidebar.template deleted file mode 100755 index 67be067..0000000 --- a/templates/.restore/.cascadr/templates/sidebar.template +++ /dev/null @@ -1,40 +0,0 @@ - diff --git a/templates/.restore/.clean/index.html b/templates/.restore/.clean/index.html deleted file mode 100644 index bc3ddd0..0000000 --- a/templates/.restore/.clean/index.html +++ /dev/null @@ -1,85 +0,0 @@ -{% load static %} - - - - - - - - - - Home / Card Players Unite Admin - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
- -

Card Players Unite Admin > Home

- -
- - - -
- -

- -Welcome to Robert's Bike Rental. We have bikes of all sizes and accessories for you and your loved ones. Explore the local neighborhood in style & comfort on our bikes. - -

- -
- - - - - - - - - -
- - - - - -