| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
This PR updates the site’s static HTML pages to adopt a Material Web (M3) look-and-feel for GitHub Pages deployment, adding a shared theme stylesheet and a small JS behavior layer while also adjusting some internal links.
Changes:
Copilot reviewed 19 out of 19 changed files in this pull request and generated 35 comments.
Show a summary per file| File | Description |
|---|---|
| about.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| blog-details.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| blog-standard.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| blog.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| careers.html | Adds Material Web + theme assets and init script. |
| contact.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| error.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| faq.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| home2.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| index.html | Adds Material Web + theme assets; fixes mail: → mailto:; adds init script. |
| news.html | Adds Material Web + theme assets; fixes mail: → mailto:; adds init script. |
| pricing.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| project-details.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| project.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| service-details.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| service.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| team.html | Adds Material Web + theme assets; updates footer services/pricing links. |
| media/material-theme.css | New Material-themed styling layer (colors, surfaces, buttons, inputs). |
| media/material-init.js | New JS behavior (theme class, ripples, active nav state). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Sorry, something went wrong.
| <a href="tel:info@example.com">info@example.com</a> | ||
| <a href="tel:info@support.com">info@support.com</a> |
| <a href="tel:info@example.com">info@example.com</a> | ||
| <a href="tel:info@support.com">info@support.com</a> |
| <a href="tel:info@example.com">info@example.com</a> | ||
| <a href="tel:info@support.com">info@support.com</a> |
| <a href="tel:info@example.com">info@example.com</a> | ||
| <a href="tel:info@support.com">info@support.com</a> |
| <a href="tel:info@example.com">info@example.com</a> | ||
| <a href="tel:info@support.com">info@support.com</a> |
| <link href="./media/material-theme.css" rel="stylesheet"> | ||
|
|
||
| <title>Creasoft - Software and Digital Agency HTML Template</title> | ||
| <script type="module" src="https://unpkg.com/@material/web/all.js?module"></script> |
| <link href="./media/material-theme.css" rel="stylesheet"> | ||
|
|
||
| <title>Creasoft - Software and Digital Agency HTML Template</title> | ||
| <script type="module" src="https://unpkg.com/@material/web/all.js?module"></script> |
| <link href="./media/material-theme.css" rel="stylesheet"> | ||
|
|
||
| <title>Creasoft - Software and Digital Agency HTML Template</title> | ||
| <script type="module" src="https://unpkg.com/@material/web/all.js?module"></script> |
| <link href="./media/material-theme.css" rel="stylesheet"> | ||
|
|
||
| <title>Creasoft - Software and Digital Agency HTML Template</title> | ||
| <script type="module" src="https://unpkg.com/@material/web/all.js?module"></script> |
| const currentPath = (location.pathname.split("/").pop() || "index.html").toLowerCase(); | ||
| document.querySelectorAll(".main-nav a[href]").forEach((a) => { | ||
| const href = (a.getAttribute("href") || "").toLowerCase(); | ||
| if (!href || href.startsWith("#")) { | ||
| return; | ||
| } | ||
| if (href === currentPath || (currentPath === "" && href === "index.html")) { | ||
| a.classList.add("active"); | ||
| } | ||
| }); |
| Back | FazBrowse Home | New Git URL |
Summary
Notes