Index.cshtml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. @{
  2. ViewData["Title"] = "Home Page";
  3. }
  4. <div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="6000">
  5. <ol class="carousel-indicators">
  6. <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
  7. <li data-target="#myCarousel" data-slide-to="1"></li>
  8. <li data-target="#myCarousel" data-slide-to="2"></li>
  9. <li data-target="#myCarousel" data-slide-to="3"></li>
  10. </ol>
  11. <div class="carousel-inner" role="listbox">
  12. <div class="item active">
  13. <img src="~/images/banner1.svg" alt="ASP.NET" class="img-responsive" />
  14. <div class="carousel-caption" role="option">
  15. <p>
  16. Learn how to build ASP.NET apps that can run anywhere.
  17. <a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525028&clcid=0x409">
  18. Learn More
  19. </a>
  20. </p>
  21. </div>
  22. </div>
  23. <div class="item">
  24. <img src="~/images/banner2.svg" alt="Visual Studio" class="img-responsive" />
  25. <div class="carousel-caption" role="option">
  26. <p>
  27. There are powerful new features in Visual Studio for building modern web apps.
  28. <a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525030&clcid=0x409">
  29. Learn More
  30. </a>
  31. </p>
  32. </div>
  33. </div>
  34. <div class="item">
  35. <img src="~/images/banner3.svg" alt="Package Management" class="img-responsive" />
  36. <div class="carousel-caption" role="option">
  37. <p>
  38. Bring in libraries from NuGet and npm, and automate tasks using Grunt or Gulp.
  39. <a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525029&clcid=0x409">
  40. Learn More
  41. </a>
  42. </p>
  43. </div>
  44. </div>
  45. <div class="item">
  46. <img src="~/images/banner4.svg" alt="Microsoft Azure" class="img-responsive" />
  47. <div class="carousel-caption" role="option">
  48. <p>
  49. Learn how Microsoft's Azure cloud platform allows you to build, deploy, and scale web apps.
  50. <a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525027&clcid=0x409">
  51. Learn More
  52. </a>
  53. </p>
  54. </div>
  55. </div>
  56. </div>
  57. <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
  58. <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  59. <span class="sr-only">Previous</span>
  60. </a>
  61. <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
  62. <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  63. <span class="sr-only">Next</span>
  64. </a>
  65. </div>
  66. <div class="row">
  67. <div class="col-md-3">
  68. <h2>Application uses</h2>
  69. <ul>
  70. <li>Sample pages using ASP.NET Core MVC</li>
  71. <li>Theming using <a href="https://go.microsoft.com/fwlink/?LinkID=398939">Bootstrap</a></li>
  72. </ul>
  73. </div>
  74. <div class="col-md-3">
  75. <h2>How to</h2>
  76. <ul>
  77. <li><a href="https://go.microsoft.com/fwlink/?LinkID=398600">Add a Controller and View</a></li>
  78. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699315">Manage User Secrets using Secret Manager.</a></li>
  79. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699316">Use logging to log a message.</a></li>
  80. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699317">Add packages using NuGet.</a></li>
  81. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699319">Target development, staging or production environment.</a></li>
  82. </ul>
  83. </div>
  84. <div class="col-md-3">
  85. <h2>Overview</h2>
  86. <ul>
  87. <li><a href="https://go.microsoft.com/fwlink/?LinkId=518008">Conceptual overview of what is ASP.NET Core</a></li>
  88. <li><a href="https://go.microsoft.com/fwlink/?LinkId=699320">Fundamentals of ASP.NET Core such as Startup and middleware.</a></li>
  89. <li><a href="https://go.microsoft.com/fwlink/?LinkId=398602">Working with Data</a></li>
  90. <li><a href="https://go.microsoft.com/fwlink/?LinkId=398603">Security</a></li>
  91. <li><a href="https://go.microsoft.com/fwlink/?LinkID=699321">Client side development</a></li>
  92. <li><a href="https://go.microsoft.com/fwlink/?LinkID=699322">Develop on different platforms</a></li>
  93. <li><a href="https://go.microsoft.com/fwlink/?LinkID=699323">Read more on the documentation site</a></li>
  94. </ul>
  95. </div>
  96. <div class="col-md-3">
  97. <h2>Run &amp; Deploy</h2>
  98. <ul>
  99. <li><a href="https://go.microsoft.com/fwlink/?LinkID=517851">Run your app</a></li>
  100. <li><a href="https://go.microsoft.com/fwlink/?LinkID=517853">Run tools such as EF migrations and more</a></li>
  101. <li><a href="https://go.microsoft.com/fwlink/?LinkID=398609">Publish to Microsoft Azure Web Apps</a></li>
  102. </ul>
  103. </div>
  104. </div>