home.blade.php 933 B

12345678910111213141516171819202122232425262728293031
  1. @extends('settings.template')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Import from Mastodon</h3>
  5. </div>
  6. <hr>
  7. <section>
  8. <div class="alert alert-info">
  9. <p class="mb-0 font-weight-bold">You can download an Mastodon backup <a href="https://www.instagram.com/download/request/">here</a>.</p>
  10. </div>
  11. <p class="lead font-weight-bold mb-1">Requirements:</p>
  12. <ul class="lead mb-4">
  13. <li>outbox.json file</li>
  14. <li>media_attachments directory</li>
  15. </ul>
  16. <p class="lead font-weight-bold mb-1">Process:</p>
  17. <ol class="lead mb-4">
  18. <li>Upload outbox.json file</li>
  19. <li>Upload media_attachments directory</li>
  20. <li>Confirm each post</li>
  21. <li>Import Data</li>
  22. </ol>
  23. <p>
  24. <a class="btn btn-primary btn-block font-weight-bold py-1" href="#">Start Import</a>
  25. </p>
  26. </section>
  27. @endsection