Custom Welcom-Panel Layout
A simple Flarum extension that allows you to set your custom layout for flarum's welcomeHero banner. TBH the main reason behind this project was for me to get experiernce with creating flarum extensions
You also can use 3 placeholder in your layout:
Welcome Banner Title from the basic settings
##ATTRIBUTE.WELCOME_TITLE
Welcome Banner Message from the basic settings
##ATTRIBUTE.WELCOME_MESSAGE
Dismiss Button
##COMPONENT.HERO_CLOSE
Examples
<div className="containerNarrow">
<h2 className="Hero-title">##ATTRIBUTE.WELCOME_TITLE</h2>
<div className="Hero-subtitle">##ATTRIBUTE.WELCOME_MESSAGE</div>
</div>
</div>
```<div class="container">
##COMPONENT.HERO_CLOSE
<div className="containerNarrow">
<h2 className="Hero-title">##ATTRIBUTE.WELCOME_TITLE</h2>
<div className="Hero-subtitle">##ATTRIBUTE.WELCOME_MESSAGE</div>
</div>
</div>
```
```
<div class="container">
<div className="containerNarrow">
<h2 className="Hero-title">##ATTRIBUTE.WELCOME_TITLE</h2>
<div className="Hero-image"><img src="http://your.domain/filename.ext"></div>
<div className="Hero-subtitle">##ATTRIBUTE.WELCOME_MESSAGE</div>
</div>
</div>
```
Installation
Use Bazaar or install manually with composer:
composer require funkeye/custom-welcome-hero
Updating
composer update funkeye/custom-welcome-hero
Links