Fix
This commit is contained in:
@@ -1,32 +1,26 @@
|
||||
@model List<University>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Home Page";
|
||||
}
|
||||
@{
|
||||
ViewData["Title"] = "Home Page";
|
||||
}
|
||||
|
||||
<section class="universe">
|
||||
<div class="container container_flex">
|
||||
<<<<<<< Updated upstream
|
||||
<div class="row">
|
||||
<div class="row row_flex">
|
||||
<form class="universe_input_block col-md-12">
|
||||
<input type="text" class="universe_input" name="searchString" placeholder="Введите название вуза или суза...">
|
||||
<input type="image" src="/img/logo/search.svg" alt="search" class="universe_search">
|
||||
<input type="image" src="/img/logo/search.svg" alt="search" class="universe_search">
|
||||
</form>
|
||||
=======
|
||||
<div class="row row_flex">
|
||||
<div class="universe_input_block col-md-12">
|
||||
<input type="text" class="universe_input" placeholder="Введите название вуза или суза..."><img src="/img/logo/search.svg" alt="search" class="universe_search">
|
||||
</div>
|
||||
>>>>>>> Stashed changes
|
||||
@{
|
||||
foreach (var university in Model)
|
||||
{
|
||||
<div class="col-2 universe_card universe_card_text">
|
||||
<img src="@university.ImageUrl" alt="universe" class="universe_icon">
|
||||
@university.Name @if (university.MinPlaceCost != 0)
|
||||
{
|
||||
<span>от @university.MinPlaceCost тыс. руб</span>
|
||||
}
|
||||
@university.Name
|
||||
@if (university.MinPlaceCost != 0)
|
||||
{
|
||||
<span>от @university.MinPlaceCost тыс. руб</span>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user