Appearance
GoBiz Modern Website File Structure
The GoBiz Modern template is organized into separate folders for website pages, reusable sections, common components, styles, JavaScript, images, fonts, routes, and template configuration. You can use the relevant folder or file to customize the website according to the requirements.
The main template directory is:
text
templates/GobizModern/Folder Structure
text
templates/
└── GobizModern/
├── GoBizModernServiceProvider.php
├── template.json
│
├── gobiz_modern_assets/
│ ├── css/
│ │ ├── aos.css
│ │ ├── builder.min.css
│ │ ├── font-awesome.css
│ │ ├── font-awesome.min.css
│ │ ├── gobiz-modern.css
│ │ └── gobiz-modern.min.css
│ │
│ ├── images/
│ │
│ ├── js/
│ │ ├── alpine.min.js
│ │ ├── aos.min.js
│ │ ├── beautify-css.min.js
│ │ ├── beautify-html.min.js
│ │ ├── beautify.min.js
│ │ ├── builder-blocks-basic.min.js
│ │ ├── builder-preset-webpage.min.js
│ │ ├── builder.min.js
│ │ ├── clipboard.min.js
│ │ ├── EmojiPicker.js
│ │ ├── htmlminifier.min.js
│ │ ├── jquery.min.js
│ │ ├── lorem.js
│ │ ├── main.min.js
│ │ ├── pusher.js
│ │ ├── pusher.min.js
│ │ ├── swiper-bundle.min.js
│ │ └── theme.bundle.js
│ │
│ └── webfonts/
│
└── Views/
└── Website/
├── blocks/
│ ├── blog-grid.blade.php
│ ├── blogs.blade.php
│ ├── contact.blade.php
│ ├── directory.blade.php
│ ├── forgot-password.blade.php
│ ├── hero.blade.php
│ ├── login.blade.php
│ ├── nfc-grid.blade.php
│ ├── pricing.blade.php
│ ├── register.blade.php
│ ├── reset-password.blade.php
│ ├── themes.blade.php
│ └── verify.blade.php
│
├── includes/
│ ├── announcements.blade.php
│ ├── available-vcard-themes.blade.php
│ ├── cookie.blade.php
│ ├── footer.blade.php
│ ├── header.blade.php
│ ├── home-directory.blade.php
│ ├── maintenance-mode.blade.php
│ ├── mobile-app-banner.blade.php
│ ├── preloader.blade.php
│ ├── register-closed-alert.blade.php
│ └── web-pop.blade.php
│
├── layouts/
│ └── index.blade.php
│
└── pages/
├── index.blade.php
├── maintenance.blade.php
├── 2f/
│ └── index.blade.php
├── about/
│ └── index.blade.php
├── auth/
│ ├── login.blade.php
│ ├── register.blade.php
│ ├── verification-notice.blade.php
│ ├── verify-public.blade.php
│ ├── verify.blade.php
│ └── passwords/
│ ├── confirm.blade.php
│ ├── email.blade.php
│ └── reset.blade.php
├── blogs/
│ ├── index.blade.php
│ ├── view.blade.php
│ └── share/
│ └── instagram.blade.php
├── contact/
│ └── index.blade.php
├── cookie-policy/
│ └── index.blade.php
├── custom-page/
│ └── index.blade.php
├── directory/
│ ├── index.blade.php
│ └── includes/
│ └── _listings.blade.php
├── errors/
│ ├── 401.blade.php
│ ├── 403.blade.php
│ ├── 404.blade.php
│ ├── 419.blade.php
│ ├── 429.blade.php
│ ├── 500.blade.php
│ ├── 503.blade.php
│ ├── illustrated-layout.blade.php
│ ├── layout.blade.php
│ └── minimal.blade.php
├── faq/
│ └── index.blade.php
├── nfc/
│ └── index.blade.php
├── nfc-order/
│ └── index.blade.php
├── privacy-policy/
│ └── index.blade.php
├── refund-policy/
│ └── index.blade.php
├── terms-and-conditions/
│ └── index.blade.php
└── web-tools/
├── bcrypt-password-generator.blade.php
├── css-beautifier.blade.php
├── css-minifier.blade.php
├── dns.blade.php
├── emojies.blade.php
├── html-beautifier.blade.php
├── html-minifier.blade.php
├── ip.blade.php
├── js-beautifier.blade.php
├── js-minifier.blade.php
├── lorem-generator.blade.php
├── md5-password-generator.blade.php
├── qr-maker.blade.php
├── random-password-generator.blade.php
├── random-word-generator.blade.php
├── text-counter.blade.php
└── whois.blade.phpTemplate Root Files
GoBizModernServiceProvider.php
This file registers the GoBiz Modern template with the application. It is part of the template setup and normally does not need to be changed for website customization.
routes/web.php
This file contains the routes used by the website pages. Access this file when adding or modifying website routes.
template.json
This file contains the template configuration and metadata. It is generally used for template-level configuration rather than regular website content changes.
Assets
The gobiz_modern_assets folder contains the frontend assets used throughout the website.
css/
Contains the CSS files responsible for the website's appearance.
Use this folder when customizing:
- Colors
- Fonts
- Spacing
- Buttons
- Layouts
- Responsive design
- Animations
The main GoBiz Modern styles are:
text
gobiz-modern.css
gobiz-modern.min.cssimages/
Contains images used by the template. Add or replace template-specific images here when required.
js/
Contains the JavaScript files used for frontend functionality.
Use this folder when customizing interactive elements such as sliders, animations, builders, and other JavaScript-based functionality.
webfonts/
Contains the web font resources used by the template.
Website Views
The Views/Website/ folder contains the main frontend files of the GoBiz Modern website.
This is the primary location customers should access when changing the website structure, content, sections, and pages.
blocks/
Contains reusable website sections.
For example:
text
hero.blade.php
pricing.blade.php
contact.blade.php
blogs.blade.php
directory.blade.php
nfc-grid.blade.phpAccess the relevant file when customizing a particular section of the website.
includes/
Contains common website components that are reused across multiple pages.
For example:
text
header.blade.php
footer.blade.php
announcements.blade.php
cookie.blade.php
preloader.blade.phpUse these files when changing common elements such as the header, footer, announcement bar, cookie notice, or preloader.
layouts/
Contains the common website layout.
text
Views/Website/layouts/index.blade.phpUse this file when making changes to the overall website structure or shared layout.
pages/
Contains the individual website pages.
Use the relevant page folder when customizing a specific page, such as About, Contact, FAQ, Blogs, Directory, NFC, or policy pages.
Page Locations
| Page / Feature | File or Folder |
|---|---|
| Homepage | Views/Website/pages/index.blade.php |
| About | Views/Website/pages/about/ |
| Contact | Views/Website/pages/contact/ |
| Blogs | Views/Website/pages/blogs/ |
| Directory | Views/Website/pages/directory/ |
| FAQ | Views/Website/pages/faq/ |
| NFC | Views/Website/pages/nfc/ |
| NFC Order | Views/Website/pages/nfc-order/ |
| Login / Register | Views/Website/pages/auth/ |
| Cookie Policy | Views/Website/pages/cookie-policy/ |
| Privacy Policy | Views/Website/pages/privacy-policy/ |
| Refund Policy | Views/Website/pages/refund-policy/ |
| Terms & Conditions | Views/Website/pages/terms-and-conditions/ |
| Custom Pages | Views/Website/pages/custom-page/ |
| Error Pages | Views/Website/pages/errors/ |
| Web Tools | Views/Website/pages/web-tools/ |
Where to Make Website Changes
| Customization | Location |
|---|---|
| Website sections | Views/Website/blocks/ |
| Header | Views/Website/includes/header.blade.php |
| Footer | Views/Website/includes/footer.blade.php |
| Announcement | Views/Website/includes/announcements.blade.php |
| Common components | Views/Website/includes/ |
| Overall layout | Views/Website/layouts/index.blade.php |
| Individual pages | Views/Website/pages/ |
| Website styling | gobiz_modern_assets/css/ |
| JavaScript functionality | gobiz_modern_assets/js/ |
| Images | gobiz_modern_assets/images/ |
| Web fonts | gobiz_modern_assets/webfonts/ |
| Website routes | routes/web.php |
Note: Before making any customization, please take a complete backup of the original template files. Customization involves modifying the template's original code, and incorrect changes may affect the website's layout or functionality. Keeping a backup allows you to restore the original template if required.
