-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
markdown filter added as twig extension
- Loading branch information
1 parent
d50940f
commit 743e968
Showing
8 changed files
with
144 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Active class | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Here you may set the class string to be returned when the provided routes | ||
| or paths were identified as applicable for the current route. | ||
| | ||
*/ | ||
|
||
'class' => 'active', | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
|
||
use Illuminate\Database\Seeder; | ||
|
||
class SpeakersSeeder extends Seeder | ||
{ | ||
/** | ||
* Run the database seeds. | ||
* | ||
* @return void | ||
*/ | ||
public function run() | ||
{ | ||
DB::table('speakers')->insert([ | ||
'name'=>json_encode([ | ||
'en'=> 'Michail Styllas', | ||
'el'=> 'Μιχάλης Στύλας' | ||
]), | ||
'id'=>'styllas', | ||
'img_src'=>'styllas.jpeg', | ||
'talk_title'=>json_encode([ | ||
'en'=>'Everest, the end of chaos!', | ||
'el'=> 'Το τέλος του χάους στο everest!', | ||
]), | ||
'talk_prev'=>json_encode([ | ||
'en'=>'Chaos is ** extreme weather **, chaos is extreme love!', | ||
'el'=>'Χάος είναι ο ακραίος καιρός του έβερεστ, χάος είναι η αγάπη' | ||
]), | ||
'bio'=>json_encode([ | ||
'en'=>'dede', | ||
'el'=>'δεδεδ' | ||
]) | ||
]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters