* lots of pertaining changes * again solving global.json version mismatch with sed * correctly specify db creds via dc env
20 lines
1.4 KiB
C#
20 lines
1.4 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace pwt_0x01_ng.Models.Database
|
|
{
|
|
public static class CarouselHelper
|
|
{
|
|
public static IList<Carousel> GenerateCarousel()
|
|
{
|
|
IList<Carousel> carousels = new List<Carousel>()
|
|
{
|
|
new Carousel() { DataTarget = "#myCarousel", ImageSrc = "/images/banner1.svg", ImageAlt = "ASP.NET", CarouselContent = "Learn how to build ASP.NET apps that can run anywhere.<a class=\"btn btn-default\" href=\"https://go.microsoft.com/fwlink/?LinkID=525028&clcid=0x409\">Learn More</a>"},
|
|
new Carousel() { DataTarget = "#myCarousel", ImageSrc = "/images/banner2.svg", ImageAlt = "ASP.NET", CarouselContent = "There are powerful new features in Visual Studio for building modern web apps.<a class=\"btn btn-default\" href=\"https://go.microsoft.com/fwlink/?LinkID=525030&clcid=0x409\">Learn More</a>"},
|
|
new Carousel() { DataTarget = "#myCarousel", ImageSrc = "/images/banner3.svg", ImageAlt = "ASP.NET", CarouselContent = "Learn how Microsoft's Azure cloud platform allows you to build, deploy, and scale web apps.<a class=\"btn btn-default\" href=\"https://go.microsoft.com/fwlink/?LinkID=525027&clcid=0x409\">Learn More</a>"},
|
|
new Carousel() { DataTarget = "#myCarousel", ImageSrc = "/images/ms_loves_linux.jpeg", ImageAlt = "msloveslinux", CarouselContent = "ms loves linux"}
|
|
};
|
|
return carousels;
|
|
}
|
|
}
|
|
}
|