Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. @{
  2. ViewBag.Title = "Southeastern Food Pantry";
  3. }
  4.  
  5. @section featured {
  6.  
  7. <section class="featured">
  8. <div class="content-wrapper">
  9. <div class="starter-template">
  10.  
  11. <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  12. <!-- Indicators -->
  13. <ol class="carousel-indicators">
  14. <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
  15. <li data-target="#carousel-example-generic" data-slide-to="1"></li>
  16. <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  17. <li data-target="#carousel-example-generic" data-slide-to="3"></li>
  18. </ol>
  19.  
  20. <!-- Wrapper for slides -->
  21. <div class="carousel-inner">
  22. <div class="item active">
  23. <img src="~/Content/images/foodpantrylogo.jpg" id="imgCurr" />
  24. @*<div class="carousel-caption">
  25. <h3>Welcome !</h3>
  26. </div>*@
  27. </div>
  28. <div class="item">
  29. <img src="~/Content/images/foodpantryupdate-cover.jpg" id="imgCurr" />
  30.  
  31. @*<div class="carousel-caption">
  32. <h3>Second</h3>
  33. </div>*@
  34. </div>
  35. <div class="item">
  36. <img src="~/Content/images/10428406_1511782449059858_8275103463360208359_o.jpg" id="imgCurr" />
  37.  
  38. @*<div class="carousel-caption">
  39. <h3>Third</h3>
  40. </div>*@
  41. </div>
  42. <div class="item">
  43. <img src="~/Content/images/image.jpg" id="imgCurr" />
  44. @*<div class="carousel-caption">
  45. <h3>Fourth</h3>
  46. </div>*@
  47. </div>
  48. </div>
  49.  
  50. <!-- Controls -->
  51.  
  52. <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
  53. <span class="glyphicon glyphicon-chevron-left"></span>
  54. </a>
  55. <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
  56. <span class="glyphicon glyphicon-chevron-right"></span>
  57. </a>
  58. </div>
  59. @*<img src="~/Content/images/foodpantrylogo.jpg" style="height:10%;width:10%;" />
  60. <h1>Southeastern Louisiana University Food Pantry</h1>
  61. <p class="lead">Southeastern Louisiana University operates a food pantry for all its students. If you are in need
  62. of food, just drop by.</p>
  63. <p>All you need is a student ID card.</p>*@
  64. </div>
  65. </div>
  66.  
  67. </section>
  68. <section>
  69. <div class="starter-template">
  70. @*<img src="~/Content/images/foodpantrylogo.jpg" style="height:10%;width:10%;" />*@
  71. <h2>Southeastern Louisiana University Food Pantry</h2>
  72. <p class="lead">
  73. Southeastern Louisiana University operates a food pantry for all its students. If you are in need
  74. of food, just drop by.
  75. </p>
  76. <p>All you need is a student ID card.</p>
  77. </div>
  78. </section>
  79.  
  80.  
  81.  
  82.  
  83. }
  84. <style>
  85. footer{
  86. position: fixed;
  87. }
  88. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement