瀏覽代碼

Start page templates

tags/v0.1.0
Immanuel Onyeka 3 年之前
父節點
當前提交
045b82702c
共有 10 個檔案被更改,包括 101 行新增59 行删除
  1. 二進制
      .README.md.swp
  2. 二進制
      .composer.json.swp
  3. +1
    -0
      .gitignore
  4. 二進制
      .gitignore.swp
  5. +4
    -58
      README.md
  6. +45
    -0
      resources/views/home.blade.php
  7. +50
    -0
      resources/views/master.blade.php
  8. +0
    -0
      resources/views/panel.blade.php
  9. +0
    -0
      resources/views/terms.blade.php
  10. +1
    -1
      routes/web.php

二進制
.README.md.swp 查看文件


二進制
.composer.json.swp 查看文件


+ 1
- 0
.gitignore 查看文件

@@ -1,3 +1,4 @@
*.sw[po]
/node_modules
/public/hot
/public/storage


二進制
.gitignore.swp 查看文件


+ 4
- 58
README.md 查看文件

@@ -1,62 +1,8 @@
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400"></a></p>

<p align="center">
<a href="https://travis-ci.org/laravel/framework"><img src="https://travis-ci.org/laravel/framework.svg" alt="Build Status"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
</p>

## About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).

Laravel is accessible, powerful, and provides tools required for large, robust applications.

## Learning Laravel

Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.

If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.

## Laravel Sponsors

We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell).

### Premium Partners

- **[Vehikl](https://vehikl.com/)**
- **[Tighten Co.](https://tighten.co)**
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
- **[64 Robots](https://64robots.com)**
- **[Cubet Techno Labs](https://cubettech.com)**
- **[Cyber-Duck](https://cyber-duck.co.uk)**
- **[Many](https://www.many.co.uk)**
- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**
- **[DevSquad](https://devsquad.com)**
- **[Curotec](https://www.curotec.com/)**
- **[OP.GG](https://op.gg)**

## Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).

## Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).

## Security Vulnerabilities

If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
## Deployment
- Make sure directories like storage have appropriate file permissions

## License
This is a private closed source project.

The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
## TODO

+ 45
- 0
resources/views/home.blade.php 查看文件

@@ -0,0 +1,45 @@
@extends('master')

@section('title', 'Home')

@section('head-metas')
@parent
<link rel="stylesheet" href="{{asset('main.css')}}">
@endsection

@section('content')
@parent
<div class='landing-hero'>
<div class='hero-filter'>
<h2>The Web's #1 Content Promoter.</h2>
</div>
</div>
<section class="about-us">
<h2>Elit</h2>
<p>Dolor molestiae quos architecto nesciunt enim! Sit corrupti voluptas
aliquam aperiam maiores iure aliquam aut Voluptatem quas deserunt iure non sunt
Esse laborum corporis explicabo eos numquam. Fugit ad ex?
</p>
</section>
<section class='services-cards'>
<h2>Dolor laborum.</h2>
<div class="card">Amet vero est sunt suscipit</div>
<div class="card">Consectetur consequatur aliquam.</div>
<div class="card">Sit</div>
<div class="card">Dolor adipisci quos distinctio?</div>
</section>
<section class='faq'>
<h2>FAQ</h2>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
</section>
@endsection

@section('scripts')
@parent
<script src="main.js"></script>
@endsection

+ 50
- 0
resources/views/master.blade.php 查看文件

@@ -0,0 +1,50 @@
<!DOCTYPE html>
<head>
{{-- This section may need to be overwritten in descendants --}}
@section('head-metas')
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="">
<link rel="stylesheet" href="">
@show
<title>Trendplays - @yield('title')</title>
</head>

<body>
<nav class='navigator' role="navigation">
<a id='logo' href='/'>
<h3>Trendplays</h3>
</a>
@guest
<form class= 'login' method='POST'>
@csrf
<label for='sender_email'>Email</label>
<input required type='email' name='sender_email' placeholder=''
spellcheck='false'>
<label for='sender_password'>Password</label>
<input required type='password' name='sender_password' placeholder='' spellcheck='false'>
<button class='login-button'type="login">Log in</button>
</form>
<a href='/register' class='register-button' type="login">Register</a>
@endguest
<span class="icon-bar"></span>
<!-- probably not needed -->
</nav>
<div class='errors'>
<ul>
@foreach ($errors->all() as $error)
<li>{{$error}}</li>
@endforeach
</ul>
</div>
@yield('content')
<footer class='footer text-center'>
<div class='foot-links'>
<a class="footer-item" href="/terms">Terms & Policy</a>
<a class="footer-item" href="/contact">Help</a>
<a class="footer-item" href="/reset-password">Reset Password</a>
</div>
<small>©Copyright 2021 Trendplays Network, Inc.</small>
</footer>
@yield('scripts')
</body>

+ 0
- 0
resources/views/panel.blade.php 查看文件


+ 0
- 0
resources/views/terms.blade.php 查看文件


+ 1
- 1
routes/web.php 查看文件

@@ -14,5 +14,5 @@ use Illuminate\Support\Facades\Route;
*/

Route::get('/', function () {
return view('welcome');
return view('home');
});

Loading…
取消
儲存