-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
10 changed files
with
46 additions
and
26 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 |
---|---|---|
@@ -1,13 +1,16 @@ | ||
# Bludit Plugins Homepage | ||
This repository contains the files (HTML, JS, CSS) for the official websites of Bludit Plugins. | ||
# Source code of https://plugins.bludit.com | ||
This repository contains the files of the official page of Bludit Plugins. | ||
|
||
- (English) https://plugins.bludit.com | ||
- (Deutsch) https://plugins.bludit.com/de/ | ||
- (Español) https://plugins.bludit.com/es/ | ||
English: | ||
- https://plugins.bludit.com | ||
|
||
Deutsch: | ||
- https://plugins.bludit.com/de/ | ||
|
||
Español: | ||
- https://plugins.bludit.com/es/ | ||
|
||
## How to add a Plugin | ||
All plugins and authors are in the bellow repository. | ||
- https://github.com/bludit/plugins-repository | ||
|
||
## How to install a Plugin | ||
- https://docs.bludit.com/en/getting-started/plugins | ||
Add your free or paid plugin. | ||
- https://github.com/bludit/plugins-repository |
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,21 +1,37 @@ | ||
<?php defined('BLUDIT') or die('Bludit'); ?> | ||
<?php defined('BLUDIT') or die('BLUDIT'); ?> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="<?php echo $_topbar['website'] ?>"> | ||
<img src="<?php echo DOMAIN ?>/img/bludit-logo.svg" width="30" height="30" class="d-inline-block align-top" alt=""> | ||
<span class="text-white">BLUDIT</span> | ||
<span class="ml-1 text-muted"><?php l('Plugins') ?></span> | ||
<span class="ml-1 text-muted"><?php l('Themes') ?></span> | ||
</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarResponsive"> | ||
<ul class="navbar-nav ml-auto"> | ||
<li class="nav-item"><a class="nav-link" href="<?php echo $_topbar['themes'] ?>"><?php l('Themes') ?></a></li> | ||
<li class="nav-item"><a class="nav-link" href="<?php echo $_topbar['plugins'] ?>"><?php l('Plugins') ?></a></li> | ||
<li class="nav-item"><a class="nav-link" href="<?php echo $_topbar['documentation'] ?>"><?php l('Documentation') ?></a></li> | ||
<li class="nav-item"><a class="nav-link" href="<?php echo $_topbar['pro'] ?>">BLUDIT PRO</a></li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="<?php echo $_topbar['themes'] ?>"><?php l('themes') ?></a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="<?php echo $_topbar['plugins'] ?>"><?php l('plugins') ?></a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="<?php echo $_topbar['documentation'] ?>"><?php l('documentation') ?></a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="<?php echo $_topbar['pro'] ?>">Bludit PRO</a> | ||
</li> | ||
<li class="nav-item dropdown"> | ||
<a class="nav-link dropdown-toggle" href="https://plugins.bludit.com" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-globe"></i></a> | ||
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink"> | ||
<a class="dropdown-item" href="https://plugins.bludit.com">English</a> | ||
<a class="dropdown-item" href="https://plugins.bludit.com/de/">Deutsch</a> | ||
<a class="dropdown-item" href="https://plugins.bludit.com/es/">Español</a> | ||
</div> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
</nav> |
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