Advertisement
Guest User

Untitled

a guest
Nov 19th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. @foreach (var item in Model)
  2. {
  3. if (item.buttonCategory == 1)
  4. {
  5. <div class="Bestillinger">
  6. <h2>Bestillinger</h2>
  7. <div class="col-md-4 text-center">
  8. <a href="@item.buttonURL"><img class="img-circle" src="@item.buttonImage"></a>
  9. <h2>@item.buttonName</h2>
  10. <p>@item.buttonDescription</p>
  11. </div>
  12. </div>
  13. <br />
  14.  
  15. }
  16. else if (item.buttonCategory == 2)
  17. {
  18. <div class="ServiceSupport">
  19. <h2>Service &amp; Support</h2>
  20. <div class="col-md-4 text-center">
  21. <a href="@item.buttonURL"><img class="img-circle" src="@item.buttonImage"></a>
  22. <h2>@item.buttonName</h2>
  23. <p>@item.buttonDescription</p>
  24. </div>
  25. </div>
  26. }
  27. else if (item.buttonCategory == 3)
  28. {
  29. <div class="Dokumentasjon">
  30. <h2>Dokumentasjon</h2>
  31. <div class="col-md-4 text-center">
  32. <a href="@item.buttonURL"><img class="img-circle" src="@item.buttonImage"></a>
  33. <h2>@item.buttonName</h2>
  34. <p>@item.buttonDescription</p>
  35. </div>
  36. </div>
  37. }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement