PageIndexController.php 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. class PageIndexController extends Controller
  5. {
  6. public function index(){
  7. $nav = [
  8. [
  9. 'title'=>'最新',
  10. 'link'=>config('mint.server.dashboard_base_path').'/community/list',
  11. ],
  12. [
  13. 'title'=>'圣典',
  14. 'link'=>config('mint.server.dashboard_base_path').'/palicanon/list',
  15. ],
  16. [
  17. 'title'=>'课程',
  18. 'link'=>config('mint.server.dashboard_base_path').'/course/list',
  19. ],
  20. [
  21. 'title'=>'字典',
  22. 'link'=>config('mint.server.dashboard_base_path').'/dict/recent',
  23. ],
  24. [
  25. 'title'=>'文集',
  26. 'link'=>config('mint.server.dashboard_base_path').'/anthology/list',
  27. ],
  28. [
  29. 'title'=>'注册/登录',
  30. 'link'=>config('mint.server.dashboard_base_path').'/anonymous/users/sign-in',
  31. ],
  32. ];
  33. $wish = [
  34. [
  35. 'title'=>'翻译一套三藏',
  36. 'description'=>'我们希望把完整的巴利三藏、义注、复注、nissaya都翻译成为中文。',
  37. ],
  38. [
  39. 'title'=>'整理一本词典',
  40. 'description'=>'我们希望借助沉淀下来的数据,整理一套完整的巴中字典。这项工作将在整个三藏翻译的过程中逐渐完成。',
  41. ],
  42. [
  43. 'title'=>'开发一个平台',
  44. 'description'=>'我们会持续开发和维护wikipali平台,并不断发展新的功能,令其越来越方便与巴利翻译和研究。',
  45. ],
  46. ];
  47. $Gallery = [
  48. [
  49. 'image'=>'/assets/gallery/02.jpg',
  50. 'title'=>'云台翻译中心',
  51. 'id'=>'desc_01',
  52. 'description'=>'远眺翻译中心',
  53. ],
  54. [
  55. 'image'=>'/assets/gallery/01.jpg',
  56. 'title'=>'翻译人才培养',
  57. 'id'=>'desc_02',
  58. 'description'=>'翻译中还不断地培养翻译人才,加入到翻译工作中。',
  59. ],
  60. [
  61. 'image'=>'/assets/gallery/03.jpg',
  62. 'title'=>'云台翻译中心',
  63. 'id'=>'desc_03',
  64. 'description'=>'外景',
  65. ],
  66. [
  67. 'image'=>'/assets/gallery/04.jpg',
  68. 'title'=>'翻译中心接待室',
  69. 'id'=>'desc_04',
  70. 'description'=>'人工湖畔的接待室,访客活动中心',
  71. ],
  72. [
  73. 'image'=>'/assets/gallery/05.jpg',
  74. 'title'=>'办公环境',
  75. 'id'=>'desc_05',
  76. 'description'=>'27寸竖屏保证翻译的效率和质量,站坐交替的升降台,保证翻译者的健康。',
  77. ],
  78. ];
  79. return view('typhoon',[
  80. 'nav'=>$nav,
  81. 'title' => '巴 利 圣 典 文 库',
  82. 'subtitle' => '巴利圣典翻译计划欢迎您的参与',
  83. 'description' => '巴利语学习与翻译工具',
  84. 'gallery' => $Gallery,
  85. ]);
  86. }
  87. }