HEX
Server: Apache
System: Linux srv4.garantili.com.tr 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ekspardev (1006)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/ekspardev/www/tubisad/rapor/src/pages/_includes/parts/nav/nav-aside.html
<form action="{{ site.base }}/" method="get" autocomplete="off" novalidate>

	<div class="subheader mb-2">Category</div>
	{% assign items = "Games,Clothing,Jewelery,Toys" | split:  "," %}
	<div class="list-group list-group-transparent mb-3">
		{% for item in items %}
		<a class="list-group-item list-group-item-action d-flex align-items-center{% if forloop.first %} active{% endif %}" href="#">
			{{ item }}
			<small class="text-muted ms-auto">{{ forloop.index | random_number: 11, 200 }}</small>
		</a>
		{% endfor %}
	</div>

	<div class="subheader mb-2">Rating</div>
	{% assign items = "5 stars,4 stars,3 stars,2 and less stars" | split:  "," %}
	<div class="mb-3">
		{% for item in items %}
		<label class="form-check">
			<input type="radio" class="form-check-input" name="form-stars" value="{{ item | escape }}"{% if forloop.first %} checked{% endif %}>
			<span class="form-check-label">{{ item }}</span>
		</label>
		{% endfor %}
	</div>

	<div class="subheader mb-2">Tags</div>
	{% assign items = "business,evening,leisure,party" | split:  "," %}
	<div class="mb-3">
		{% for item in items %}
		<label class="form-check">
			<input type="checkbox" class="form-check-input" name="form-tags[]" value="{{ item | escape }}"{% if forloop.first %} checked{% endif %}>
			<span class="form-check-label">{{ item }}</span>
		</label>
		{% endfor %}
	</div>

	<div class="subheader mb-2">Price</div>
	<div class="row g-2 align-items-center mb-3">
		<div class="col">
			{% include ui/form/input-group.html prepend="$" placeholder="from" value="3" %}
		</div>
		<div class="col-auto">—</div>
		<div class="col">
			{% include ui/form/input-group.html prepend="$" placeholder="to" %}
		</div>
	</div>

	<div class="subheader mb-2">Shipping</div>
	<div>
		<select name="" class="form-select">
			<option>United Kingdom</option>
			<option>USA</option>
			<option>Germany</option>
			<option>Poland</option>
			<option>Other…</option>
		</select>
	</div>

	<div class="mt-5">
		{% include ui/button.html text="Confirm changes" color="primary" block=true element="button" %}
		{% include ui/button.html text="Reset to defaults" color="link" block=true %}
	</div>
</form>