Skip to content

Commit

Permalink
Merge pull request #80 from XetaIO/aboutme-page
Browse files Browse the repository at this point in the history
Add a page AboutMe
  • Loading branch information
Xety authored May 10, 2022
2 parents b0da0f7 + ba465ef commit f271756
Show file tree
Hide file tree
Showing 31 changed files with 826 additions and 20 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Vagrantfile
/public/editor-md/
/public/css
/public/fonts
/public/files
/public/images
/public/js
/public/music
Expand Down
21 changes: 21 additions & 0 deletions app/Http/Controllers/DownloadsController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
namespace Xetaravel\Http\Controllers;

use Symfony\Component\HttpFoundation\BinaryFileResponse;

class DownloadsController extends Controller
{
/**
* Download a file.
*
* @param string $fileName
*
* @return BinaryFileResponse
*/
public function download($fileName)
{
$filePath = public_path('files/'.$fileName);

return response()->download($filePath);
}
}
11 changes: 10 additions & 1 deletion app/Http/Controllers/PageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
use Illuminate\Support\Facades\Validator;
use Illuminate\View\View;
use Xetaravel\Models\Article;
use Xetaravel\Models\Comment;
use Xetaravel\Mail\Contact;

class PageController extends Controller
Expand Down Expand Up @@ -103,4 +102,14 @@ public function banished()

return view('page.banished');
}

/**
* Display my custom page.
*
* @return \Illuminate\Http\Response
*/
public function aboutme()
{
return view('page.aboutme');
}
}
Binary file added public/files/Fevre_Emeric_CV.pdf
Binary file not shown.
Binary file added resources/assets/files/Fevre_Emeric_CV.pdf
Binary file not shown.
Binary file added resources/assets/images/aboutme/bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/check.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/cubes-bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions resources/assets/images/aboutme/cv.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/division.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/fmt.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/fmt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/layer01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/layer02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/layer03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/layer04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/layer05.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/layer06.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions resources/assets/images/aboutme/whatido.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/assets/images/aboutme/xeta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions resources/assets/js/parallax/jarallax.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f271756

Please sign in to comment.