Пример #1
0
        public void AddImagesWithSeeMore(List <string> imageToUse, List <string> imageToUseSmall, string htmlpath, string imagePath, string path, string offSetFolder, string seeMore)
        {
            HTMLHelper.Gallery.AddGalleryHeaderLocos(this, null);

            foreach (string image in imageToUse)
            {
                HTMLHelper.AddImageToGallery(htmlpath, imagePath, this, image, offSetFolder);
            }

            foreach (string image in imageToUseSmall)
            {
                HTMLHelper.AddImageToGallerySmall(htmlpath, imagePath, this, image, offSetFolder);
            }


            Append(HTMLHelper.CreateCard(seeMore));

            HTMLHelper.Gallery.AddGalleryFooter(this);
        }