{{ page.heading }}
9 | {% elsif page.title and page.layout != 'archive' %} 10 |{{ page.title }}
11 | {% endif %} 12 | {% if page.description %} 13 |{{ page.description }}
14 | {% endif %} 15 | {{ content }} 16 |├── CNAME ├── docs ├── env.md ├── kick-ascii │ ├── img │ │ └── lbry.png │ ├── cast │ │ ├── dev-env-install.png │ │ ├── dev-env-install.png.kra │ │ └── dev-env-install.cast │ ├── index.html │ └── kick-ascii.js ├── index.md └── install.md ├── images ├── .DS_Store ├── movie.png ├── movies.png ├── scene1.png ├── scene2.png ├── scenes.png ├── stash.jpg ├── studio.png ├── studios.png ├── editScene.png ├── playScene.png ├── performer1.png ├── performer2.png ├── performer3.png ├── performers.png ├── performers_2.png ├── thumbs │ ├── movie.png │ ├── movies.png │ ├── scene1.png │ ├── scene2.png │ ├── scenes.png │ ├── studio.png │ ├── studios.png │ ├── editScene.png │ ├── performer1.png │ ├── performer2.png │ ├── performer3.png │ ├── performers.png │ ├── playScene.png │ └── performers_2.png ├── stock │ └── favicon.ico ├── macbook_screenshot_original.png ├── stash.svg └── AGPLv3_Logo.svg ├── .gitignore ├── _posts ├── _defaults.md └── 2019-07-12-a-new-beginning.md ├── _staff_members └── _defaults.md ├── robots.txt ├── 404.md ├── about.md ├── _sass ├── mixins │ ├── columns.scss │ └── flexbox.scss ├── variables.scss ├── elements.scss ├── navigation.scss ├── forms.scss ├── footer.scss ├── landing-page.scss └── layout.scss ├── _includes ├── relative-src.html ├── post-title.html ├── list-posts.html ├── navigation.html └── social-icon.html ├── contact.md ├── _data ├── footer.yml └── navigation.yml ├── Gemfile ├── css └── screen.scss ├── _layouts ├── page.html ├── archive.html ├── post.html └── default.html ├── .vscode └── tasks.json ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── discussion---request-for-commentary--rfc-.md │ └── bug_report.md └── PULL_REQUEST_TEMPLATE │ ├── BugFix.md │ └── Feature.md ├── blog └── index.html ├── README.md ├── documentation-community-lead.md ├── linguistics-community-lead.md ├── project-manager.md ├── CONTRIBUTING.md ├── volunteer.md ├── community-liaison.md ├── ui-ux-specialist.md ├── _config.yml ├── Gemfile.lock ├── index.html └── LICENSE.md /CNAME: -------------------------------------------------------------------------------- 1 | stashapp.cc -------------------------------------------------------------------------------- /docs/env.md: -------------------------------------------------------------------------------- 1 | ## StashApp is ... pending more information here. 2 | -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/movie.png -------------------------------------------------------------------------------- /images/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/movies.png -------------------------------------------------------------------------------- /images/scene1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/scene1.png -------------------------------------------------------------------------------- /images/scene2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/scene2.png -------------------------------------------------------------------------------- /images/scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/scenes.png -------------------------------------------------------------------------------- /images/stash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/stash.jpg -------------------------------------------------------------------------------- /images/studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/studio.png -------------------------------------------------------------------------------- /images/studios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/studios.png -------------------------------------------------------------------------------- /images/editScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/editScene.png -------------------------------------------------------------------------------- /images/playScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/playScene.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | .jekyll-metadata 4 | *.png~ 5 | */.kra 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /_posts/_defaults.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 3 | categories: 4 | author_staff_member: 5 | date: 6 | --- 7 | -------------------------------------------------------------------------------- /images/performer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performer1.png -------------------------------------------------------------------------------- /images/performer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performer2.png -------------------------------------------------------------------------------- /images/performer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performer3.png -------------------------------------------------------------------------------- /images/performers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performers.png -------------------------------------------------------------------------------- /images/performers_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/performers_2.png -------------------------------------------------------------------------------- /images/thumbs/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/movie.png -------------------------------------------------------------------------------- /images/stock/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/stock/favicon.ico -------------------------------------------------------------------------------- /images/thumbs/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/movies.png -------------------------------------------------------------------------------- /images/thumbs/scene1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/scene1.png -------------------------------------------------------------------------------- /images/thumbs/scene2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/scene2.png -------------------------------------------------------------------------------- /images/thumbs/scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/scenes.png -------------------------------------------------------------------------------- /images/thumbs/studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/studio.png -------------------------------------------------------------------------------- /images/thumbs/studios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/studios.png -------------------------------------------------------------------------------- /_staff_members/_defaults.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 3 | position: 4 | image_path: 5 | twitter: 6 | blurb: 7 | --- 8 | -------------------------------------------------------------------------------- /docs/kick-ascii/img/lbry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/docs/kick-ascii/img/lbry.png -------------------------------------------------------------------------------- /images/thumbs/editScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/editScene.png -------------------------------------------------------------------------------- /images/thumbs/performer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performer1.png -------------------------------------------------------------------------------- /images/thumbs/performer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performer2.png -------------------------------------------------------------------------------- /images/thumbs/performer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performer3.png -------------------------------------------------------------------------------- /images/thumbs/performers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performers.png -------------------------------------------------------------------------------- /images/thumbs/playScene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/playScene.png -------------------------------------------------------------------------------- /images/thumbs/performers_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/thumbs/performers_2.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | sitemap: false 4 | --- 5 | User-agent: * 6 | Sitemap: {{ site.url }}/sitemap.xml 7 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Not Found 3 | description: This does not exist 4 | permalink: /404.html 5 | sitemap: false 6 | --- 7 | -------------------------------------------------------------------------------- /images/macbook_screenshot_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/images/macbook_screenshot_original.png -------------------------------------------------------------------------------- /_posts/2019-07-12-a-new-beginning.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2019-07-12 3 | title: A new beginning 4 | --- 5 | 6 | Why we restarted everything -------------------------------------------------------------------------------- /docs/kick-ascii/cast/dev-env-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/docs/kick-ascii/cast/dev-env-install.png -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: About StashApp 3 | description: StashApp is a free, opensource porn Stash curation and streaming tool. 4 | --- 5 | -------------------------------------------------------------------------------- /_sass/mixins/columns.scss: -------------------------------------------------------------------------------- 1 | @mixin columns($value) { 2 | columns: $value; 3 | -webkit-columns: $value; 4 | -moz-columns: $value; 5 | } 6 | -------------------------------------------------------------------------------- /docs/kick-ascii/cast/dev-env-install.png.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/website/HEAD/docs/kick-ascii/cast/dev-env-install.png.kra -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Docs 3 | description: Features and what you can do with StashApp 4 | --- 5 | 6 | - [Environment Variables and Configuration](/docs/env/) 7 | - [Quick Start - Docker](/docs/install/) 8 | -------------------------------------------------------------------------------- /_includes/relative-src.html: -------------------------------------------------------------------------------- 1 | {% assign prefix = include.src | slice: 0, 2 %}{% assign protocol = include.src | slice: 0, 4 %}{% unless protocol == 'http' or prefix == "//" %}{{ site.baseurl }}{% endunless %}{{ include.src }} 2 | -------------------------------------------------------------------------------- /contact.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contact 3 | heading: Get in touch today 4 | description: Join us on Discord 5 | --- 6 | 7 | [](https://discord.gg/2TsNFKt) 8 | -------------------------------------------------------------------------------- /_data/footer.yml: -------------------------------------------------------------------------------- 1 | # - links: 2 | # - name: About 3 | # link: /about/ 4 | # - name: Contact 5 | # link: /contact/ 6 | # - links: 7 | # - name: Docs 8 | # link: /docs/ 9 | # - name: Github 10 | # link: https://github.com/stashapp 11 | # new_window: true 12 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll' 4 | 5 | group :jekyll_plugins do 6 | gem 'jekyll-archives' 7 | gem 'jekyll-feed' 8 | gem 'jekyll-paginate' 9 | gem 'jekyll-seo-tag' 10 | gem 'jekyll-sitemap' 11 | gem 'tzinfo' 12 | gem 'tzinfo-data' 13 | end 14 | -------------------------------------------------------------------------------- /_includes/post-title.html: -------------------------------------------------------------------------------- 1 |
2 | {% for category in include.post.categories %} 3 | 4 | {{ category | capitalize }} 5 | 6 | {% endfor %} 7 | {{ include.post.date | date: "%B %d, %Y" }} 8 |
9 | -------------------------------------------------------------------------------- /css/screen.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | @import "mixins/flexbox"; 4 | @import "mixins/columns"; 5 | @import "variables"; 6 | @import "elements"; 7 | @import "landing-page"; 8 | @import "layout"; 9 | // @import "pricing"; 10 | // @import "staff"; 11 | // @import "contact"; 12 | // @import "blog"; 13 | @import "forms"; 14 | @import "navigation"; 15 | @import "footer"; 16 | -------------------------------------------------------------------------------- /_sass/variables.scss: -------------------------------------------------------------------------------- 1 | $body-bg: #30404d; 2 | $text-color: #f5f8fa; 3 | 4 | $brand-color: #202b33; 5 | $secondary-brand-color: #394b59; 6 | $middle-gradient-color: mix($brand-color, $secondary-brand-color, 95%); 7 | 8 | // Breakpoints 9 | $xs: "(max-width: 575px)"; 10 | $sm: "(min-width: 576px)"; 11 | $md: "(min-width: 768px)"; 12 | $lg: "(min-width: 992px)"; 13 | $xl: "(min-width: 1200px)"; 14 | -------------------------------------------------------------------------------- /_includes/list-posts.html: -------------------------------------------------------------------------------- 1 | {% for post in include.posts %} 2 |{{ page.description }}
14 | {% endif %} 15 | {{ content }} 16 |{{ blog.description }}
14 | {% endif %} 15 | 16 |93 | Stash allows you to organize and view your own collection of adult video and image files. 94 | Think of it like a private PornHub site for your personal porn collection. 95 |
96 |Every video file has its own scene. Scenes can be rated and tagged with performers, tags, movies and a studio.
105 |Bookmark your favorite parts of a scene with markers. Markers can be tagged and appear in the video scrubber when viewing a scene.
113 |Images can be rated and tagged with performers, tags and a studio.
121 |Galleries are collections of images. Galleries can be automatically created from zip files and folders containing image files.
129 |143 | Preview and view all of your scenes and galleries from your web browser on your PC, tablet or phone. Stash directly streams videos to your web browser. 144 | Stash supports streaming of a large variety of formats and codecs to most web browsers. 145 |
146 |Rate your scenes and images, and tag them with performers, tags, movies and studios. Filter and sort your content with a variety of filter and sorting options.
157 |Stash also allows you to derive metadata from filenames. Alternatively, you can scrape metadata from websites using community-curated scrapers.
158 |Stash operates on your own network. Your collection is not shared anywhere.
178 |You can even password protect it.
179 |Stash is developed by volunteers and is licensed under the GNU AGPL. This means that it is, and always will be, free.
190 |228 | View the milestones for upcoming features in the next versions 229 | here. 230 |
231 |