about.blade.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <!DOCTYPE html>
  2. <html lang="{{ app()->getLocale() }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="mobile-web-app-capable" content="yes">
  8. <title>{{ config_cache('app.name') ?? 'pixelfed' }}</title>
  9. <meta property="og:site_name" content="{{ config_cache('app.name') ?? 'pixelfed' }}">
  10. <meta property="og:title" content="{{ config_cache('app.name') ?? 'pixelfed' }}">
  11. <meta property="og:type" content="article">
  12. <meta property="og:url" content="{{route('site.about')}}">
  13. <meta property="og:description" content="{{config_cache('app.short_description')}}">
  14. <meta name="medium" content="image">
  15. <meta name="theme-color" content="#10c5f8">
  16. <meta name="apple-mobile-web-app-capable" content="yes">
  17. <link rel="shortcut icon" type="image/png" href="/img/favicon.png?v=2">
  18. <link rel="apple-touch-icon" type="image/png" href="/img/favicon.png?v=2">
  19. <link href="{{ mix('css/app.css') }}" rel="stylesheet">
  20. <style type="text/css">
  21. .section-spacer {
  22. height: 13vh;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <main id="content">
  28. <div class="container">
  29. <p class="text-right mt-3">
  30. <a href="/" class="font-weight-bold text-dark">Home</a>
  31. <a href="/site/newsroom" class="ml-4 font-weight-bold text-dark">Newsroom</a>
  32. </p>
  33. </div>
  34. <div class="px-4 py-5 my-5 text-center">
  35. <a href="/">
  36. <img class="d-block mx-auto mb-4" src="/img/pixelfed-icon-color.svg" alt="" width="72" height="57">
  37. </a>
  38. <h1 class="display-4 font-weight-bold py-3">{{ config_cache('about.title') ?? 'Photo Sharing. For Everyone' }}</h1>
  39. <div class="col-lg-6 mx-auto py-3">
  40. <p class="mb-4 font-weight-light text-left" style="font-size: 26px; line-height: 40px;">
  41. {!! config_cache('app.description') ?? config_cache('app.short_description') ?? 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms.'!!}
  42. </p>
  43. </div>
  44. </div>
  45. <div class="container">
  46. <div class="row align-items-stretch pt-5">
  47. <div class="col">
  48. <div class="card h-100 shadow-lg" style="background-image: url('/_landing/3.jpeg');min-height:400px;border-radius:1rem;">
  49. </div>
  50. </div>
  51. <div class="col">
  52. <div class="card h-100 shadow-lg" style="background-image: url('/_landing/8.jpeg');min-height:400px;border-radius:1rem;">
  53. </div>
  54. </div>
  55. </div>
  56. <div class="row align-items-stretch pt-5">
  57. <div class="col">
  58. <div class="card h-100 shadow-lg" style="background-image: url('/_landing/6.jpeg');min-height:200px;border-radius:1rem;background-size: cover;">
  59. </div>
  60. </div>
  61. <div class="col">
  62. <div class="card h-100 shadow-lg" style="background-image: url('/_landing/4.jpeg');min-height:200px;border-radius:1rem;background-size: cover;">
  63. </div>
  64. </div>
  65. <div class="col">
  66. <div class="card h-100 shadow-lg" style="background-image: url('/_landing/7.jpeg');min-height:200px;border-radius:1rem;background-size: cover;">
  67. </div>
  68. </div>
  69. </div>
  70. <div class="row align-items-stretch py-5">
  71. <div class="col">
  72. <div class="card h-100 shadow-lg" style="background-image: url('/_landing/1.jpeg');min-height:200px;border-radius:1rem;background-size: cover;">
  73. </div>
  74. </div>
  75. <div class="col">
  76. <div class="card h-100 shadow-lg" style="background-image: url('/_landing/5.jpeg');min-height:200px;border-radius:1rem;background-size: cover;">
  77. </div>
  78. </div>
  79. <div class="col">
  80. <div class="card h-100 shadow-lg" style="background-image: url('/_landing/9.jpeg');min-height:200px;border-radius:1rem;background-size: cover;">
  81. </div>
  82. </div>
  83. </div>
  84. </div>
  85. @if($rules)
  86. <div class="section-spacer"></div>
  87. <div class="section-spacer"></div>
  88. <div id="rules" class="container">
  89. <div class="row mb-4">
  90. <div class="col">
  91. <h1 class="display-4 font-weight-bold mb-0 text-center">Rules</h1>
  92. </div>
  93. </div>
  94. <div class="row justify-content-center">
  95. <div class="col-12 mb-2 col-lg-8 mb-lg-0">
  96. <ol>
  97. @foreach($rules as $rule)
  98. <li class="h3 my-4">{{$rule}}</li>
  99. @endforeach
  100. </ol>
  101. <p class="h5 text-center pt-4">For more information, please review our <a href="/site/terms">Terms of Use</a></p>
  102. </div>
  103. </div>
  104. </div>
  105. <div class="section-spacer"></div>
  106. <div class="section-spacer"></div>
  107. @endif
  108. <section class="container">
  109. <div class="row">
  110. <div class="col-12 col-md-8 offset-md-2">
  111. <div class="mt-5">
  112. <p class="text-center display-4 font-weight-bold">Feature Packed.</p>
  113. </div>
  114. <div class="my-2">
  115. <p class="h3 font-weight-light text-muted text-center">The best for the brightest 📸</p>
  116. </div>
  117. </div>
  118. </div>
  119. </section>
  120. <div class="container my-5">
  121. <div class="row p-4 pb-0 pt-lg-5 align-items-center rounded-3">
  122. <div class="col-lg-6 p-3 p-lg-5 pt-lg-3">
  123. <h1 class="display-4 font-weight-bold lh-1">Albums</h1>
  124. <p class="h4 font-weight-light">Share posts with up to {{config_cache('pixelfed.max_album_length')}} photos</p>
  125. </div>
  126. <div class="col-lg-6 overflow-hidden">
  127. <img class="rounded-lg img-fluid filter-inkwell" src="/_landing/1.jpeg" alt="" width="720">
  128. </div>
  129. </div>
  130. </div>
  131. <div class="section-spacer"></div>
  132. <div class="container my-5">
  133. <div class="row p-4 pb-0 pt-lg-5 align-items-center rounded-3">
  134. <div class="col-lg-6 overflow-hidden">
  135. <img class="rounded-lg img-fluid filter-inkwell" src="/_landing/2.jpeg" alt="" width="720">
  136. </div>
  137. <div class="col-lg-6 p-3 p-lg-5 pt-lg-3">
  138. <h1 class="display-4 font-weight-bold lh-1">Comments</h1>
  139. <p class="h4 font-weight-light text-justify">Comment on a post, or send a reply</p>
  140. </div>
  141. </div>
  142. </div>
  143. <div class="section-spacer"></div>
  144. <div class="container my-5">
  145. <div class="row p-4 pb-0 pt-lg-5 align-items-center rounded-3">
  146. <div class="col-lg-6 p-3 p-lg-5 pt-lg-3">
  147. <h1 class="display-4 font-weight-bold lh-1">Collections</h1>
  148. <p class="h4 font-weight-light text-justify">Organize and share collections of multiple posts</p>
  149. </div>
  150. <div class="col-lg-6 overflow-hidden">
  151. <img class="rounded-lg img-fluid filter-inkwell" src="/_landing/3.jpeg" alt="" width="720">
  152. </div>
  153. </div>
  154. </div>
  155. <div class="section-spacer"></div>
  156. <div class="container my-5">
  157. <div class="row p-4 pb-0 pt-lg-5 align-items-center rounded-3">
  158. <div class="col-lg-6 overflow-hidden">
  159. <img class="rounded-lg img-fluid filter-inkwell" src="/_landing/4.jpeg" alt="" width="720">
  160. </div>
  161. <div class="col-lg-6 p-3 p-lg-5 pt-lg-3">
  162. <h1 class="display-4 font-weight-bold lh-1">Discover</h1>
  163. <p class="h4 font-weight-light text-justify">Explore categories, hashtags and topics</p>
  164. </div>
  165. </div>
  166. </div>
  167. <div class="section-spacer"></div>
  168. <div class="container my-5">
  169. <div class="row p-4 pb-0 pt-lg-5 align-items-center rounded-3">
  170. <div class="col-lg-6 p-3 p-lg-5 pt-lg-3">
  171. <h1 class="display-4 font-weight-bold lh-1">Photo Filters</h1>
  172. <p class="h4 font-weight-light text-justify">Add a special touch to your photos</p>
  173. </div>
  174. <div class="col-lg-6 overflow-hidden">
  175. <img class="rounded-lg img-fluid filter-inkwell" src="/_landing/5.jpeg" alt="" width="720">
  176. </div>
  177. </div>
  178. </div>
  179. <div class="section-spacer"></div>
  180. <div class="container my-5">
  181. <div class="row p-4 pb-0 pt-lg-5 align-items-center rounded-3">
  182. <div class="col-lg-6 overflow-hidden">
  183. <img class="rounded-lg img-fluid filter-inkwell" src="/_landing/6.jpeg" alt="" width="720">
  184. </div>
  185. <div class="col-lg-6 p-3 p-lg-5 pt-lg-3">
  186. <h1 class="display-4 font-weight-bold lh-1">Stories</h1>
  187. <p class="h4 font-weight-light text-justify">Share moments with your followers that disappear after 24 hours</p>
  188. </div>
  189. </div>
  190. </div>
  191. <div class="section-spacer"></div>
  192. <div class="section-spacer"></div>
  193. <div id="stats" class="container">
  194. <div class="row mb-4">
  195. <div class="col">
  196. <p class="display-3 font-weight-bold">
  197. <span class="text-primary">{{$user_count}}</span>
  198. people have shared
  199. <span class="text-primary">{{$post_count}}</span>
  200. photos and videos on {{config_cache('app.name')}}!
  201. </p>
  202. @if(config_cache('pixelfed.open_registration'))
  203. <div class="section-spacer"></div>
  204. <p class="display-4 font-weight-bold mb-0">
  205. <a class="text-primary" href="/register">Sign up today</a>
  206. and join our community of photographers from around the world.
  207. </p>
  208. @endif
  209. </div>
  210. </div>
  211. </div>
  212. <div class="section-spacer"></div>
  213. <div class="section-spacer"></div>
  214. </main>
  215. </div>
  216. @include('layouts.partial.footer')
  217. </body>
  218. </html>