Skip to content

Commit 4401576

Browse files
committed
[FIX] Docs.
1 parent 6be2682 commit 4401576

7 files changed

Lines changed: 13 additions & 6 deletions

File tree

docs/pages/use-in-blade.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Use this example code for show all active domains:
1313

1414
```php
1515
@foreach(sMultisite::domains() as $domain)
16-
<a href="{% raw %}{{$domain['link']}}{% endraw %}" class="@if($domain['is_current']) active @endif">
17-
<img src="/img/logo-{% raw %}{{$domain['key']}}{% endraw %}.svg" alt="" />
18-
<span>{% raw %}{{$domain['site_name']}}{% endraw %}</span>
16+
<a href="{{$domain['link']}}" class="@if($domain['is_current']) active @endif">
17+
<img src="/img/logo-{{$domain['key']}}.svg" alt="" />
18+
<span>{{$domain['site_name']}}</span>
1919
</a>
2020
@endforeach
2121
```
@@ -57,9 +57,9 @@ In this array:
5757
@if(evo()->documentIdentifier == evo()->getConfig('site_start'))
5858
<span class="header__logo">
5959
@else
60-
<a href="{% raw %}{{url(evo()->getConfig('site_start'), '', '', 'full')}}{% endraw %}" class="header__logo">
60+
<a href="{{url(evo()->getConfig('site_start'), '', '', 'full')}}" class="header__logo">
6161
@endif
62-
<img src="/img/main-logo-{% raw %}{{evo()->getConfig('site_key')}}{% endraw %}.svg" alt="{% raw %}{{evo()->getConfig('site_name')}}{% endraw %} logo" />
62+
<img src="/img/main-logo-{{evo()->getConfig('site_key')}}.svg" alt="{{evo()->getConfig('site_name')}} logo" />
6363
@if(evo()->documentIdentifier == evo()->getConfig('site_start'))
6464
</span>
6565
@else
-181 KB
Binary file not shown.
-179 KB
Binary file not shown.
-198 KB
Binary file not shown.

docs/static/img/admin/robots.jpg

-168 KB
Binary file not shown.
-107 KB
Binary file not shown.

docs/static/img/logo.svg

Lines changed: 8 additions & 1 deletion
Loading

0 commit comments

Comments
 (0)