├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DEV_NOTES.md ├── DIRECTORY_STRUCTURE.md ├── LICENSE ├── README.md ├── aardwolf-yew-app ├── Cargo.lock ├── Cargo.toml ├── index.html ├── src │ ├── .DS_Store │ ├── lib.rs │ ├── main.rs │ ├── templates.rs │ └── templates │ │ ├── .DS_Store │ │ ├── elements.rs │ │ ├── elements │ │ ├── dropdown_lang.rs │ │ ├── input_email.rs │ │ ├── input_password.rs │ │ ├── input_password_confirm.rs │ │ ├── input_username.rs │ │ ├── main_title.rs │ │ ├── notification_content.rs │ │ └── search_bar.rs │ │ ├── external.rs │ │ ├── external │ │ └── placeholder.md │ │ ├── layout.rs │ │ ├── layout │ │ ├── footer.rs │ │ ├── nav_top.rs │ │ └── nav_ybc.rs │ │ ├── pages.rs │ │ ├── pages │ │ ├── sign_in.rs │ │ └── sign_up.rs │ │ ├── shared.rs │ │ ├── shared │ │ ├── about_us.rs │ │ ├── blank_html.rs │ │ ├── error_http.rs │ │ ├── home.rs │ │ └── ybc_hero.rs │ │ └── styles.rs └── static │ ├── base.css │ ├── notificationBox.css │ ├── notification_dropdown.css │ └── scratchpad.css ├── design_notes ├── Home-Page-Demo.png ├── README.md ├── img │ └── default_avatar.png ├── pencil_files │ └── aardwolf_wireframe.epgz ├── scanned_drawing │ ├── scanned_main.jpg │ └── scanned_settings.jpg └── wireframes │ ├── README.md │ ├── base_blank.png │ ├── base_notifications.png │ ├── base_settings.png │ ├── base_shortcutrs_with_timeline.png │ ├── base_shortcuts.png │ ├── base_shortcuts_with_timeline.png │ ├── containers_preferences.png │ ├── containers_profile_edit.png │ ├── containers_profile_view.png │ ├── errorpage.png │ ├── notifications_dropdown.png │ ├── posts_new.png │ ├── posts_new_cw.png │ ├── posts_new_dropdown.png │ ├── posts_reply.png │ ├── posts_reply_sample.png │ └── posts_top_level_sample.png ├── templates ├── asides │ ├── aside_settings.html │ └── aside_shortcuts.html ├── base.html ├── containers │ ├── container_calendar.html │ ├── container_filters_add.html │ ├── container_preferences.html │ ├── container_profile_edit.html │ └── container_profile_view.html ├── demo.html ├── elements │ ├── input_email.html │ ├── input_password.html │ ├── input_password_confirm.html │ ├── input_username.html │ ├── lang_dropdown.html │ ├── notification_content.html │ ├── notification_dropdown.html │ └── search_bar.html ├── error │ └── error_http.html ├── footer.html ├── home.html ├── home │ ├── home.rs.html │ ├── home_base.html │ └── home_nav_top.html ├── html_head.html ├── posts │ ├── post_new.html │ └── post_reply.html ├── sign_in.html └── sign_up.html ├── ui-spec.txt └── web ├── _sass ├── base │ ├── _global.scss │ ├── _responsive.scss │ └── _variables.scss ├── external │ └── _reset.scss ├── includes │ ├── _footer.scss │ └── _header.scss └── layouts │ ├── _calendar.scss │ ├── _index.scss │ └── _post.scss ├── css ├── base.css ├── components │ ├── notificationBox.css │ └── notification_dropdown.css └── scratchpad.css ├── emoji └── README.md ├── favicon.ico ├── images ├── 128x128.png ├── aardwolf-logo-orig.png ├── aardwolf-logo.png └── default_avatar.png ├── javascript ├── README.md ├── components │ ├── bulma-calendar.js │ ├── delete_notifcation.js │ └── notificationBox.js └── vue.2.5.20.min.js └── themes └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DEV_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/DEV_NOTES.md -------------------------------------------------------------------------------- /DIRECTORY_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/DIRECTORY_STRUCTURE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/README.md -------------------------------------------------------------------------------- /aardwolf-yew-app/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/Cargo.lock -------------------------------------------------------------------------------- /aardwolf-yew-app/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/Cargo.toml -------------------------------------------------------------------------------- /aardwolf-yew-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/index.html -------------------------------------------------------------------------------- /aardwolf-yew-app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/.DS_Store -------------------------------------------------------------------------------- /aardwolf-yew-app/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/lib.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/main.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/.DS_Store -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/elements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/elements.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/elements/dropdown_lang.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/elements/dropdown_lang.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/elements/input_email.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/elements/input_email.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/elements/input_password.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/elements/input_password.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/elements/input_password_confirm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/elements/input_password_confirm.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/elements/input_username.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/elements/input_username.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/elements/main_title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/elements/main_title.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/elements/notification_content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/elements/notification_content.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/elements/search_bar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/elements/search_bar.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/external.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/external/placeholder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/external/placeholder.md -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/layout.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/layout/footer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/layout/footer.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/layout/nav_top.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/layout/nav_top.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/layout/nav_ybc.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/pages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/pages.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/pages/sign_in.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/pages/sign_in.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/pages/sign_up.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/pages/sign_up.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/shared.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/shared.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/shared/about_us.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/shared/about_us.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/shared/blank_html.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/shared/blank_html.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/shared/error_http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/shared/error_http.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/shared/home.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/shared/home.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/shared/ybc_hero.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/src/templates/shared/ybc_hero.rs -------------------------------------------------------------------------------- /aardwolf-yew-app/src/templates/styles.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aardwolf-yew-app/static/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/static/base.css -------------------------------------------------------------------------------- /aardwolf-yew-app/static/notificationBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/static/notificationBox.css -------------------------------------------------------------------------------- /aardwolf-yew-app/static/notification_dropdown.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aardwolf-yew-app/static/scratchpad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/aardwolf-yew-app/static/scratchpad.css -------------------------------------------------------------------------------- /design_notes/Home-Page-Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/Home-Page-Demo.png -------------------------------------------------------------------------------- /design_notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/README.md -------------------------------------------------------------------------------- /design_notes/img/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/img/default_avatar.png -------------------------------------------------------------------------------- /design_notes/pencil_files/aardwolf_wireframe.epgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/pencil_files/aardwolf_wireframe.epgz -------------------------------------------------------------------------------- /design_notes/scanned_drawing/scanned_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/scanned_drawing/scanned_main.jpg -------------------------------------------------------------------------------- /design_notes/scanned_drawing/scanned_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/scanned_drawing/scanned_settings.jpg -------------------------------------------------------------------------------- /design_notes/wireframes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/README.md -------------------------------------------------------------------------------- /design_notes/wireframes/base_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/base_blank.png -------------------------------------------------------------------------------- /design_notes/wireframes/base_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/base_notifications.png -------------------------------------------------------------------------------- /design_notes/wireframes/base_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/base_settings.png -------------------------------------------------------------------------------- /design_notes/wireframes/base_shortcutrs_with_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/base_shortcutrs_with_timeline.png -------------------------------------------------------------------------------- /design_notes/wireframes/base_shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/base_shortcuts.png -------------------------------------------------------------------------------- /design_notes/wireframes/base_shortcuts_with_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/base_shortcuts_with_timeline.png -------------------------------------------------------------------------------- /design_notes/wireframes/containers_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/containers_preferences.png -------------------------------------------------------------------------------- /design_notes/wireframes/containers_profile_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/containers_profile_edit.png -------------------------------------------------------------------------------- /design_notes/wireframes/containers_profile_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/containers_profile_view.png -------------------------------------------------------------------------------- /design_notes/wireframes/errorpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/errorpage.png -------------------------------------------------------------------------------- /design_notes/wireframes/notifications_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/notifications_dropdown.png -------------------------------------------------------------------------------- /design_notes/wireframes/posts_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/posts_new.png -------------------------------------------------------------------------------- /design_notes/wireframes/posts_new_cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/posts_new_cw.png -------------------------------------------------------------------------------- /design_notes/wireframes/posts_new_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/posts_new_dropdown.png -------------------------------------------------------------------------------- /design_notes/wireframes/posts_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/posts_reply.png -------------------------------------------------------------------------------- /design_notes/wireframes/posts_reply_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/posts_reply_sample.png -------------------------------------------------------------------------------- /design_notes/wireframes/posts_top_level_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/design_notes/wireframes/posts_top_level_sample.png -------------------------------------------------------------------------------- /templates/asides/aside_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/asides/aside_settings.html -------------------------------------------------------------------------------- /templates/asides/aside_shortcuts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/asides/aside_shortcuts.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/containers/container_calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/containers/container_calendar.html -------------------------------------------------------------------------------- /templates/containers/container_filters_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/containers/container_filters_add.html -------------------------------------------------------------------------------- /templates/containers/container_preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/containers/container_preferences.html -------------------------------------------------------------------------------- /templates/containers/container_profile_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/containers/container_profile_edit.html -------------------------------------------------------------------------------- /templates/containers/container_profile_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/containers/container_profile_view.html -------------------------------------------------------------------------------- /templates/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/demo.html -------------------------------------------------------------------------------- /templates/elements/input_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/elements/input_email.html -------------------------------------------------------------------------------- /templates/elements/input_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/elements/input_password.html -------------------------------------------------------------------------------- /templates/elements/input_password_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/elements/input_password_confirm.html -------------------------------------------------------------------------------- /templates/elements/input_username.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/elements/input_username.html -------------------------------------------------------------------------------- /templates/elements/lang_dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/elements/lang_dropdown.html -------------------------------------------------------------------------------- /templates/elements/notification_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/elements/notification_content.html -------------------------------------------------------------------------------- /templates/elements/notification_dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/elements/notification_dropdown.html -------------------------------------------------------------------------------- /templates/elements/search_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/elements/search_bar.html -------------------------------------------------------------------------------- /templates/error/error_http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/error/error_http.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/home/home.rs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/home/home.rs.html -------------------------------------------------------------------------------- /templates/home/home_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/home/home_base.html -------------------------------------------------------------------------------- /templates/home/home_nav_top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/home/home_nav_top.html -------------------------------------------------------------------------------- /templates/html_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/html_head.html -------------------------------------------------------------------------------- /templates/posts/post_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/posts/post_new.html -------------------------------------------------------------------------------- /templates/posts/post_reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/posts/post_reply.html -------------------------------------------------------------------------------- /templates/sign_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/sign_in.html -------------------------------------------------------------------------------- /templates/sign_up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/templates/sign_up.html -------------------------------------------------------------------------------- /ui-spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/ui-spec.txt -------------------------------------------------------------------------------- /web/_sass/base/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/_sass/base/_global.scss -------------------------------------------------------------------------------- /web/_sass/base/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/_sass/base/_responsive.scss -------------------------------------------------------------------------------- /web/_sass/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/_sass/base/_variables.scss -------------------------------------------------------------------------------- /web/_sass/external/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/_sass/external/_reset.scss -------------------------------------------------------------------------------- /web/_sass/includes/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/_sass/includes/_footer.scss -------------------------------------------------------------------------------- /web/_sass/includes/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/_sass/includes/_header.scss -------------------------------------------------------------------------------- /web/_sass/layouts/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/_sass/layouts/_calendar.scss -------------------------------------------------------------------------------- /web/_sass/layouts/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/_sass/layouts/_index.scss -------------------------------------------------------------------------------- /web/_sass/layouts/_post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/_sass/layouts/_post.scss -------------------------------------------------------------------------------- /web/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/css/base.css -------------------------------------------------------------------------------- /web/css/components/notificationBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/css/components/notificationBox.css -------------------------------------------------------------------------------- /web/css/components/notification_dropdown.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/css/scratchpad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/css/scratchpad.css -------------------------------------------------------------------------------- /web/emoji/README.md: -------------------------------------------------------------------------------- 1 | This is where emoji should be stored. 2 | -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/images/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/images/128x128.png -------------------------------------------------------------------------------- /web/images/aardwolf-logo-orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/images/aardwolf-logo-orig.png -------------------------------------------------------------------------------- /web/images/aardwolf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/images/aardwolf-logo.png -------------------------------------------------------------------------------- /web/images/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/images/default_avatar.png -------------------------------------------------------------------------------- /web/javascript/README.md: -------------------------------------------------------------------------------- 1 | This is where the JavaScript will go. 2 | -------------------------------------------------------------------------------- /web/javascript/components/bulma-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/javascript/components/bulma-calendar.js -------------------------------------------------------------------------------- /web/javascript/components/delete_notifcation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/javascript/components/delete_notifcation.js -------------------------------------------------------------------------------- /web/javascript/components/notificationBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/javascript/components/notificationBox.js -------------------------------------------------------------------------------- /web/javascript/vue.2.5.20.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aardwolf-Social/aardwolf-interface/HEAD/web/javascript/vue.2.5.20.min.js -------------------------------------------------------------------------------- /web/themes/README.md: -------------------------------------------------------------------------------- 1 | Folder for instance theming. 2 | --------------------------------------------------------------------------------