|
28 | 28 | <div class="form-check pb-3">
|
29 | 29 | <input class="form-check-input" type="checkbox" name="crawlable" id="crawlable" {{!$settings->crawlable ? 'checked=""':''}} {{$settings->is_private ? 'disabled=""':''}}>
|
30 | 30 | <label class="form-check-label font-weight-bold" for="crawlable">
|
31 |
| - {{__('Opt-out of search engine indexing')}} |
| 31 | + {{__('Disable Search Engine indexing')}} |
32 | 32 | </label>
|
33 |
| - <p class="text-muted small help-text">When your account is visible to search engines, your information can be crawled and stored by search engines.</p> |
| 33 | + <p class="text-muted small help-text">When your account is visible to search engines, your information can be crawled and stored by search engines. {!! $settings->is_private ? '<strong>Not available when your account is private</strong>' : ''!!}</p> |
| 34 | + </div> |
| 35 | + |
| 36 | + <div class="form-check pb-3"> |
| 37 | + <input class="form-check-input" type="checkbox" name="indexable" id="indexable" {{$profile->indexable ? 'checked=""':''}} {{$settings->is_private ? 'disabled=""':''}}> |
| 38 | + <label class="form-check-label font-weight-bold" for="indexable"> |
| 39 | + {{__('Include public posts in search results')}} |
| 40 | + </label> |
| 41 | + <p class="text-muted small help-text">Your public posts may appear in search results on Pixelfed and Mastodon. People who have interacted with your posts may be able to search them regardless. {!! $settings->is_private ? '<strong>Not available when your account is private</strong>' : ''!!}</p> |
34 | 42 | </div>
|
35 | 43 |
|
36 | 44 |
|
|
39 | 47 | <label class="form-check-label font-weight-bold" for="is_suggestable">
|
40 | 48 | {{__('Show on Directory')}}
|
41 | 49 | </label>
|
42 |
| - <p class="text-muted small help-text">When this option is enabled, your profile is included in the Directory. Only public profiles are eligible.</p> |
| 50 | + <p class="text-muted small help-text">When this option is enabled, your profile is included in the Directory. Only public profiles are eligible. {!! $settings->is_private ? '<strong>Not available when your account is private</strong>' : ''!!}</p> |
43 | 51 | </div>
|
44 | 52 |
|
45 | 53 | <div class="form-check pb-3">
|
|
97 | 105 | <p class="text-muted small help-text mb-0">Enable your profile atom feed. Only public profiles are eligible.</p>
|
98 | 106 | @if($settings->show_atom)
|
99 | 107 | <p class="small">
|
100 |
| - <a href="{{$profile->permalink('.atom')}}" class="text-success font-weight-bold small" target="_blank"> |
101 |
| - {{ $profile->permalink('.atom') }} |
102 |
| - <i class="far fa-external-link ml-1 text-muted" style="opacity: 0.5"></i> |
103 |
| - </a> |
| 108 | + <a href="{{$profile->permalink('.atom')}}" class="text-success font-weight-bold small" target="_blank"> |
| 109 | + {{ $profile->permalink('.atom') }} |
| 110 | + <i class="far fa-external-link ml-1 text-muted" style="opacity: 0.5"></i> |
| 111 | + </a> |
104 | 112 | </p>
|
105 | 113 | @endif
|
106 | 114 | </div>
|
|
0 commit comments