Fotogaleri Modülünde hazırlanan galeriyi anasayfaya getirmek için aşağıdaki kodu index.cshtml sayfasına ekleyiniz.

index.cshtml

      @foreach (PhotoGalleryImage comPost in Partial.PhotoGalleryImages(1))
                {
                <div class="discus-owl-div discus-only-title">
                    <div class="disucs-owl-img">
                        <a class="discus-only-link" data-fancybox="gallery" href="/Upload/PhotoGallery/Thumb/@comPost.PhotoGalleryImageLink" style="background: url(/Upload/PhotoGallery/Thumb/@comPost.PhotoGalleryImageLink)">
                        </a>
                    </div>

                <h3 style="font-size:16px;">  @Partial.PhotoGalleryImageName(comPost.PhotoGalleryImageID, lang)</h3>

                </div>
                }

Fotogaleriye eklenen açıklamayı getirmek için;

<h3>@Partial.PhotoGalleryImageName(comPost.PhotoGalleryImageID, lang)</h3>
İndex Bileşenleri