Skip to content

Commit

Permalink
Add marker css classes to view
Browse files Browse the repository at this point in the history
  • Loading branch information
danon committed Nov 7, 2024
1 parent 8d7c669 commit 54542d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
12 changes: 5 additions & 7 deletions database/seeders/BlocksTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private function addFooterBlock(): void

$content = <<<EOF
<div class="row max-width">
<div class="col-md-2 col-sm-4">
<div class="col-md-2 col-sm-4 footer-column">
<ul>
<li><h6><a title="Zobacz nasze oferty pracy" href="/Praca">Praca dla programistów</a></h6></li>
<li><a href="/Praca/Technologia/javascript">Praca JavaScript</a></li>
Expand All @@ -30,11 +30,10 @@ private function addFooterBlock(): void
<li><a href="/Praca/Technologia/php">Praca PHP</a></li>
<li><a href="/Praca/Technologia/python">Praca Python</a></li>
<li><a href="/Praca/Technologia/c%2B%2B">Praca C++</a></li>
</ul>
</div>
<div class="col-md-2 col-sm-4">
<div class="col-md-2 col-sm-4 footer-column">
<ul>
<li><h6><a title="Forum dla programistów" href="/Forum">Forum dyskusyjne</a></h6></li>
<li><a title="Forum dla początkujących programistów" href="/Forum/Newbie">Newbie</a></li>
Expand All @@ -46,7 +45,7 @@ private function addFooterBlock(): void
</ul>
</div>
<div class="col-md-2 col-sm-4">
<div class="col-md-2 col-sm-4 footer-column">
<ul>
<li><h6>Sprawy administracyjne</h6></li>
<li><a title="Jeżeli znalazłeś błąd w oprogramowaniu, tu jest odpowiednie miejsce, aby to zgłosić" href="https://github.com/adam-boduch/coyote/issues">Zgłoś błąd w oprogramowaniu</a></li>
Expand All @@ -58,7 +57,7 @@ private function addFooterBlock(): void
</ul>
</div>
<div class="col-md-2 col-sm-4">
<div class="col-md-2 col-sm-4 footer-column">
<ul>
<li><h6>O nas</h6></li>
<li><a title="Kontakt z serwisem 4programmers.net" href="/Kontakt">Kontakt</a></li>
Expand All @@ -70,10 +69,9 @@ private function addFooterBlock(): void
</ul>
</div>
<div class=" col-sm-4">
<div class="col-sm-4">
<div class="footer-bubble">
<h6>Skontaktuj się z nami</h6>
<ol>
<li>
<a title="Skontaktuj się poprzez email" href="/Kontakt">
Expand Down
6 changes: 3 additions & 3 deletions resources/views/home.twig
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</li>
</ul>

<div id="box-forum-headline">
<div id="box-forum-headline" class="interesting-topics">
<div class="tab-content">
<div role="tabpanel" class="tab-pane {{ settings.topicMode == 'interesting' ? 'active' }}" id="interesting">
{% for topic in interesting %}
Expand All @@ -60,7 +60,7 @@
<a href="{{ route('forum.category', [topic.forum_slug]) }}" class="category">
{{ topic.forum }}
</a>
<small class="float-end">
<small class="topic-created float-end">
{{ topic.last_post_created_at|format_date }}
</small>
</div>
Expand All @@ -87,7 +87,7 @@
<a href="{{ route('forum.category', [topic.forum_slug]) }}" class="category">
{{ topic.forum }}
</a>
<small class="float-end">
<small class="float-end topic-created">
{{ topic.last_post_created_at|format_date }}
</small>
</div>
Expand Down

0 comments on commit 54542d9

Please sign in to comment.