-
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
Bjorn Zschernack
committed
Nov 13, 2023
1 parent
6cfa462
commit 4a50086
Showing
8 changed files
with
886 additions
and
3 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<div class="w-100 bg-white mt-5 ps-5" id="partner-banner"> | ||
<div class="d-flex h-100"> | ||
|
||
<div class="partner-content content-40 h-100 d-flex justify-content-center flex-column px-5"> | ||
<div class="badgeline">Ihr Partner wenn’s ums Auto geht</div> | ||
|
||
<?php if(isset($args['headline'])) : ?> | ||
<h2 class="text-start"><?php echo $args['headline']; ?></h2> | ||
<?php endif; ?> | ||
|
||
<?php if(isset($args['teaser'])) : ?> | ||
<p class="banner-paragraph"><?php echo $args['teaser']; ?></p> | ||
<?php endif; ?> | ||
<?php if(isset($args['url'])) : ?> | ||
<a class="banner-button" href="<?php echo $args['url']; ?>">Mehr über uns</a> | ||
<?php endif; ?> | ||
|
||
</div> | ||
|
||
<?php if(isset($args['img'])) : ?> | ||
<div class="partner-content content-60 image-bg p-0" style="background-image:url('<?php echo $args['img']; ?>')"></div> | ||
<?php endif; ?> | ||
</div> | ||
</div> |