Müşteri Görüşleri Sayfası & Genel Düzenlemeler
* Yeni Sayfa: Kurumsal menüsü altına modern tasarımlı 'Müşteri Görüşleri' sayfası eklendi.\n* Düzeltme: Kitaplar sayfasındaki renk döngüsü hatası giderildi ve eksik Google Play linki eklendi.\n* Temizlik: Proje dizinindeki gereksiz bakım dosyaları silindi.
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
'GANs ve Projeler'
|
||||
],
|
||||
'image' => 'assets/img/photos/tensorflow-book-real.jpg',
|
||||
// 'google_play_link' => '...' // Link removed
|
||||
'google_play_link' => 'https://play.google.com/store/books/details/%C3%9CM%C4%B0T_TUN%C3%87_TENSORFLOW_%C4%B0LE_DER%C4%B0N_%C3%96%C4%9ERENME?id=X8gqEAAAQBAJ'
|
||||
],
|
||||
[
|
||||
'id' => 2,
|
||||
@@ -93,10 +93,11 @@
|
||||
|
||||
@foreach($books as $index => $book)
|
||||
@php
|
||||
// Alternate styles
|
||||
$styleKey = ($index % 2 == 0) ? 'leaf' : 'aqua';
|
||||
// Dynamic style cycling
|
||||
$styleKeys = array_keys($styles);
|
||||
$styleKey = $styleKeys[$index % count($styleKeys)];
|
||||
$style = $styles[$styleKey];
|
||||
$reverse = ($index % 2 != 0);
|
||||
$reverse = ($index % 2 != 0); // Keep alternation for layout but decouple from style
|
||||
|
||||
// Split topics into 2 columns
|
||||
$topicChunks = array_chunk($book['topics'], ceil(count($book['topics']) / 2));
|
||||
|
||||
Reference in New Issue
Block a user