about summary refs log tree commit diff
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@gmail.com>2018-12-26 12:52:13 -0500
committerZach DeCook <zachdecook@gmail.com>2018-12-26 12:52:13 -0500
commite51142fbb8ba83c3938915e213fc3037f7fb06f9 (patch)
tree08480e642ab4c4006c3e44c03290188becb6ce9e
parent83b5a599c9859dae70baf29fd57c8d5e19507ea9 (diff)
downloadprosongsa-e51142fbb8ba83c3938915e213fc3037f7fb06f9.tar.gz
* Home page: List out all the songs
-rw-r--r--laravel/resources/views/welcome.blade.php39
1 files changed, 7 insertions, 32 deletions
diff --git a/laravel/resources/views/welcome.blade.php b/laravel/resources/views/welcome.blade.php
index 26ca674..4cbb234 100644
--- a/laravel/resources/views/welcome.blade.php
+++ b/laravel/resources/views/welcome.blade.php
@@ -20,10 +20,6 @@
                 margin: 0;
             }
 
-            .full-height {
-                height: 100vh;
-            }
-
             .flex-center {
                 align-items: center;
                 display: flex;
@@ -40,27 +36,9 @@
                 top: 18px;
             }
 
-            .content {
-                text-align: center;
-            }
-
             .title {
                 font-size: 84px;
             }
-
-            .links > a {
-                color: #636b6f;
-                padding: 0 25px;
-                font-size: 13px;
-                font-weight: 600;
-                letter-spacing: .1rem;
-                text-decoration: none;
-                text-transform: uppercase;
-            }
-
-            .m-b-md {
-                margin-bottom: 30px;
-            }
         </style>
     </head>
     <body>
@@ -80,18 +58,15 @@
             @endif
 
             <div class="content">
-                <div class="title m-b-md">
-                    Laravel
+                <div class="title">
+                    Prosongsa Songs
                 </div>
 
-                <div class="links">
-                    <a href="https://laravel.com/docs">Documentation</a>
-                    <a href="https://laracasts.com">Laracasts</a>
-                    <a href="https://laravel-news.com">News</a>
-                    <a href="https://nova.laravel.com">Nova</a>
-                    <a href="https://forge.laravel.com">Forge</a>
-                    <a href="https://github.com/laravel/laravel">GitHub</a>
-                </div>
+                <ul>
+                    @foreach( App\Song::all() as $song )
+                        <li>{{ $song['title'] }}
+                    @endforeach
+                </ul>
             </div>
         </div>
     </body>