-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Jun 4, 2024
0 parents
commit f9a1ca6
Showing
20 changed files
with
2,406 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# ignore php files | ||
index.php | ||
config.php | ||
# Ignore docs files | ||
/_site/ | ||
# Hugo resources folder | ||
/resources/ | ||
|
||
# Numerous always-ignore extensions | ||
*.diff | ||
*.err | ||
*.log | ||
*.orig | ||
*.rej | ||
*.swo | ||
*.swp | ||
*.vi | ||
*.zip | ||
*~ | ||
|
||
# OS or Editor folders | ||
._* | ||
.cache | ||
.DS_Store | ||
.idea | ||
.project | ||
.settings | ||
.tmproj | ||
*.esproj | ||
*.sublime-project | ||
*.sublime-workspace | ||
nbproject | ||
Thumbs.db | ||
/.vscode/ | ||
# Local Netlify folder | ||
.netlify | ||
|
||
# Komodo | ||
.komodotools | ||
*.komodoproject | ||
|
||
# Folders to ignore | ||
/js/coverage/ | ||
/node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<IfModule mod_deflate.c> | ||
# Compress HTML, CSS, JavaScript, Text, XML and fonts | ||
AddOutputFilterByType DEFLATE image/svg+xml | ||
AddOutputFilterByType DEFLATE application/javascript | ||
AddOutputFilterByType DEFLATE application/rss+xml | ||
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject | ||
AddOutputFilterByType DEFLATE application/x-font | ||
AddOutputFilterByType DEFLATE application/x-font-opentype | ||
AddOutputFilterByType DEFLATE application/x-font-otf | ||
AddOutputFilterByType DEFLATE application/x-font-truetype | ||
AddOutputFilterByType DEFLATE application/x-font-ttf | ||
AddOutputFilterByType DEFLATE application/x-javascript | ||
AddOutputFilterByType DEFLATE application/xhtml+xml | ||
AddOutputFilterByType DEFLATE application/xml | ||
AddOutputFilterByType DEFLATE font/opentype | ||
AddOutputFilterByType DEFLATE font/eot | ||
AddOutputFilterByType DEFLATE font/otf | ||
AddOutputFilterByType DEFLATE font/ttf | ||
AddOutputFilterByType DEFLATE image/svg+xml | ||
AddOutputFilterByType DEFLATE image/x-icon | ||
AddOutputFilterByType DEFLATE text/css | ||
AddOutputFilterByType DEFLATE text/html | ||
AddOutputFilterByType DEFLATE text/javascript | ||
AddOutputFilterByType DEFLATE text/plain | ||
AddOutputFilterByType DEFLATE text/xml | ||
AddOutputFilterByType DEFLATE application/json | ||
AddOutputFilterByType DEFLATE application/ld+json | ||
AddOutputFilterByType DEFLATE application/manifest+json | ||
AddOutputFilterByType DEFLATE application/schema+json | ||
AddOutputFilterByType DEFLATE application/geo+json | ||
|
||
|
||
|
||
# Remove browser bugs (only needed for really old browsers) | ||
BrowserMatch ^Mozilla/4 gzip-only-text/html | ||
BrowserMatch ^Mozilla/4\.0[678] no-gzip | ||
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html | ||
Header append Vary User-Agent | ||
</IfModule> | ||
|
||
# BEGIN Expire headers | ||
<IfModule mod_expires.c> | ||
#Turn on the module. | ||
ExpiresActive On | ||
|
||
#Set the default expiry times. | ||
#Images | ||
ExpiresByType image/jpg "access plus 1 month" | ||
ExpiresByType image/jpeg "access plus 1 month" | ||
ExpiresByType image/gif "access plus 1 month" | ||
ExpiresByType image/png "access plus 1 month" | ||
ExpiresByType image/svg+xml "access plus 1 month" | ||
ExpiresByType image/x-icon "access plus 1 month" | ||
ExpiresByType image/ico "access plus 1 month" | ||
|
||
#Video | ||
ExpiresByType video/webm "access plus 1 month" | ||
ExpiresByType video/mp4 "access plus 1 month" | ||
ExpiresByType video/mpeg "access plus 1 month" | ||
|
||
#Fonts | ||
ExpiresByType font/ttf "access plus 1 month" | ||
ExpiresByType font/otf "access plus 1 month" | ||
ExpiresByType font/eot "access plus 1 month" | ||
ExpiresByType font/woff "access plus 1 month" | ||
ExpiresByType font/woff2 "access plus 1 month" | ||
ExpiresByType application/font-woff "access plus 1 month" | ||
|
||
#Manifest files | ||
ExpiresByType application/manifest+json "access plus 1 week" | ||
ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds" | ||
ExpiresByType text/cache-manifest "access plus 0 seconds" | ||
|
||
# HTML, CSS, JavaScript, JSON, XML | ||
ExpiresByType text/html "access plus 600 seconds" | ||
ExpiresByType text/css "access plus 1 month" | ||
ExpiresByType text/javascript "access plus 1 month" | ||
ExpiresByType application/x-httpd-php "access plus 1 month" | ||
ExpiresByType application/javascript "access plus 1 month" | ||
ExpiresByType application/json "access plus 0 seconds" | ||
ExpiresByType application/ld+json "access plus 0 seconds" | ||
ExpiresByType application/schema+json "access plus 0 seconds" | ||
ExpiresByType application/geo+json "access plus 0 seconds" | ||
ExpiresByType application/xml "access plus 0 seconds" | ||
ExpiresByType text/xml "access plus 0 seconds" | ||
|
||
# Others | ||
ExpiresByType application/pdf "access plus 1 month" | ||
ExpiresByType image/vnd.microsoft.icon "access plus 1 month" | ||
</IfModule> | ||
# END Expire headers | ||
|
||
#DISABLE CACHING | ||
#<IfModule mod_headers.c> | ||
# Header set Cache-Control "no-cache, no-store, must-revalidate" | ||
# Header set Pragma "no-cache" | ||
# Header set Expires 0 | ||
#</IfModule> | ||
|
||
#<FilesMatch "\.(css|flv|gif|htm|html|ico|jpe|jpeg|jpg|js|mp3|mp4|png|pdf|swf|txt)$"> | ||
# <IfModule mod_expires.c> | ||
# ExpiresActive Off | ||
# </IfModule> | ||
# <IfModule mod_headers.c> | ||
# FileETag None | ||
# Header unset ETag | ||
# Header unset Pragma | ||
# Header unset Cache-Control | ||
# Header unset Last-Modified | ||
# Header set Pragma "no-cache" | ||
# Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate" | ||
# Header set Expires "Thu, 1 Jan 1970 00:00:00 GMT" | ||
# </IfModule> | ||
#</FilesMatch> | ||
|
||
RewriteEngine on | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteRule ^ - [R=404,L] | ||
ErrorDocument 404 https://msales.gglink.uk/error-404.php | ||
ErrorDocument 404 /error-404.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
## Greetings from Moksy! 👋 | ||
|
||
### What is Moksy? | ||
Moksy is your premier destination for open-source and 💯% free professional e-learning templates suitable for both personal and corporate ventures. | ||
|
||
### Our Mission | ||
To democratize e-learning by offering high-quality, professional templates at no cost. Designed on the Bootstrap framework, our templates are not only responsive but also meticulously documented, ensuring adaptability across various platforms. | ||
|
||
## Aiden: eLearning Redefined | ||
|
||
Introducing **Aiden**, a cutting-edge eLearning template tailored to revolutionize your educational experience. Built with the modern educator and learner in mind, it effortlessly combines aesthetics with functionality. | ||
|
||
### Key Features: | ||
- **Responsive Design:** Seamless experience across devices. | ||
- **Interactive UI:** Engage your audience effectively. | ||
- **Optimized Performance:** Fast loading times and lag-free interactions. | ||
|
||
## Technologies We Use | ||
|
||
- **HTML**: [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) | ||
- **CSS**: [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS) | ||
- **Bootstrap**: [Bootstrap](https://getbootstrap.com/) | ||
- **JavaScript**: [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) | ||
- **XML**: [XML](https://www.w3.org/XML/) | ||
- **JSON**: [JSON](https://www.json.org/json-en.html) | ||
|
||
<br/> <br/> | ||
<a href="https://www.w3.org/html/" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/html5/html5-original-wordmark.svg" alt="html5" width="40" height="40"/> </a> | ||
<a href="https://www.w3schools.com/css/" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-original-wordmark.svg" alt="css3" width="40" height="40"/> </a> | ||
<a href="https://getbootstrap.com" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/bootstrap/bootstrap-plain-wordmark.svg" alt="bootstrap" width="40" height="40"/> </a> | ||
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="no-referrer"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-original.svg" alt="javascript" width="40" height="40"/> </a> | ||
<a href="https://www.php.net" target="_blank" rel="no-referrer"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/php/php-original.svg" alt="php" width="40" height="40"/> </a> | ||
<a href="https://git-scm.com/" target="_blank"> <img src="https://www.vectorlogo.zone/logos/git-scm/git-scm-icon.svg" alt="git" width="40" height="40"/> </a> | ||
|
||
|
||
|
||
### Tags: | ||
- #eLearningTemplate | ||
- #Aiden | ||
- #ResponsiveDesign | ||
- #OnlineEducation | ||
- #InteractiveUI | ||
- #Education2023 | ||
|
||
### What is Aiden : | ||
"Aiden is a top-tier eLearning template, designed to elevate online educational platforms. With its responsive design and interactive UI, it stands out as a choice for educators aiming for excellence. Experience the future of eLearning with Aiden." | ||
|
||
### Why Choose Aiden? | ||
**High Quality:** Built to the latest web standards ensuring quality and integrity. | ||
|
||
**SEO Ready:** Integrated with best practices in SEO, ensuring your platform's online visibility. | ||
|
||
**User-Centric:** Designed with user experience at its core. | ||
|
||
Harness the power of **Aiden** for a transformative eLearning journey. | ||
|
||
|
||
### Experience Moksy Live | ||
#### Moksy Official Site | ||
[Aiden](https://moksy.com/templates/aiden) | ||
|
||
#### GitHub Live Preview | ||
[Aiden](https://moksy-lab.github.io/aiden) | ||
|
||
### Licensing | ||
Moksy proudly stands as an open-source initiative by [moksy.com](https://moksy.com), licensed under the [MIT](https://opensource.org/licenses/MIT). We, at moksy.com, reserve the right to modify the license terms for future releases. | ||
|
||
### Want to Show Your Appreciation? Support Us! | ||
<a href="https://www.paypal.com/donate/?hosted_button_id=Q279LEZ5BAWBY"> | ||
<img align="left" src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" height="50" width="210" alt="Buy Us A Coffee" /> | ||
</a> | ||
|
||
<br/><br/> | ||
|
||
Every team member at Moksy has dedicated themselves to serve the community. Your support fuels our motivation and ensures we can continue to offer these resources for free. | ||
|
||
### Impressed with Our Template? 🌟 | ||
<a href="https://github.com/Moksy-Lab/Aiden"> | ||
Give us a star on GitHub and help us reach more developers! ⭐️ | ||
</a> | ||
|
||
### Contribute & Collaborate | ||
<img src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/github.svg" alt="github" width="40" height="40"/> | ||
<a href="https://github.com/Moksy-Lab/Aiden"> | ||
Join our community and contribute to an ever-evolving platform. | ||
</a> | ||
|
||
### Let's Stay Connected | ||
<p align="left"> | ||
<a href="https://www.linkedin.com/company/moksyuk/" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/linked-in-alt.svg" alt="LinkedIn" height="30" width="40" /></a> | ||
<a href="https://www.facebook.com/moksyuk" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/facebook.svg" alt="Facebook" height="30" width="40" /></a> | ||
<a href="https://www.youtube.com/channel/UCTXQx-lXRoOeGy9b-B0RXMg" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/youtube.svg" alt="YouTube" height="30" width="40" /></a> | ||
<a href="https://g.page/r/CWIjjM1wv6tFEB0/review" target="blank"><img align="center" src="https://png.pngtree.com/element_our/sm/20180526/sm_5b09436fd0515.jpg" alt="Review Us" height="30" width="40" /></a> | ||
</p> | ||
|
||
### Image Credits | ||
We're grateful for the free image resources provided by: | ||
- [Pixeden](https://www.pixeden.com/) | ||
- [Shutterstock](https://www.shutterstock.com/) | ||
- [Unsplash](https://unsplash.com/) | ||
|
||
### Get in Touch | ||
**Location**: Moksy, 3-5 Marco polo house, Croydon, CR0 2BX | ||
|
||
**Support Email**: support@moksy.com | ||
|
||
### Thank You for Choosing Moksy ❤️ | ||
Your trust fuels our commitment to provide better and more accessible e-learning resources. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.