├── .gitignore ├── .gitreview ├── 404.html ├── CNAME ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── _config.yml ├── _data └── community.yml ├── _engineering ├── Bluetooth-SBC-XQ.md ├── HowTo-Debugging.md ├── HowTo-SELinux.md ├── Qualcomm-Firmware.md └── Telephony.md ├── _headers ├── _includes ├── disqus.html ├── footer-icons.html ├── meta.html └── svg │ ├── apps.svg │ ├── lineage.svg │ ├── lineage_logo.svg │ └── trust.svg ├── _layouts ├── default.html ├── page.html └── post.html ├── _posts └── blog │ ├── 2016-12-24-Yes-this-is-us.md │ ├── 2016-12-28-Infrastructure-Status-and-Official-Builds.md │ ├── 2017-01-20-Update-and-Build-Prep.md │ ├── 2017-02-13-Last-Week-in-LineageOS.md │ ├── 2017-02-20-Last-Week-in-LineageOS-2.md │ ├── 2017-02-27-Last-Week-in-LineageOS-3.md │ ├── 2017-03-06-Last-Week-in-LineageOS-4.md │ ├── 2017-03-20-Last-Week-in-LineageOS-5.md │ ├── 2017-04-01-Announcing-our-Mascot.md │ ├── 2017-04-04-Last-Week-in-LineageOS-6.md │ ├── 2017-04-18-Last-2-Weeks-in-LineageOS-7.md │ ├── 2017-05-02-Changelog-8.md │ ├── 2017-05-15-Changelog-9.md │ ├── 2017-05-31-Changelog-10.md │ ├── 2017-06-05-PlayIntegrity.md │ ├── 2017-06-12-Changelog-11.md │ ├── 2017-07-03-Changelog-12.md │ ├── 2017-08-08-Changelog-13.md │ ├── 2017-08-18-Summer-Survey.md │ ├── 2017-09-23-Changelog-14.md │ ├── 2017-10-16-Summer-Survey-Results.md │ ├── 2017-12-05-Changelog-15.md │ ├── 2017-12-24-Celebrating-one-year-of-LineageOS.md │ ├── 2018-02-25-Changelog-16.md │ ├── 2018-03-20-Introducing-the-LineageSDK.md │ ├── 2018-04-01-Changelog-17.md │ ├── 2018-04-10-An-April-Apology.md │ ├── 2018-05-25-Changelog-18.md │ ├── 2018-06-12-Trust-me.md │ ├── 2018-07-19-Changelog-19.md │ ├── 2018-08-02-Summer-Survey-2.md │ ├── 2018-09-17-Changelog-20.md │ ├── 2018-11-05-Summer-Survey-2-Results.md │ ├── 2018-11-27-Changelog-21.md │ ├── 2019-03-01-Changelog-22.md │ ├── 2019-07-02-Changelog-23.md │ ├── 2020-04-01-Changelog-24.md │ ├── 2021-04-01-Changelog-25.md │ ├── 2022-04-26-Changelog-26.md │ ├── 2022-12-31-Changelog-27.md │ ├── 2024-02-14-Changelog-28.md │ ├── 2024-03-05-Sunsetting-LineageOS-18.1.md │ ├── 2024-12-31-Changelog-29.md │ └── 2025-10-11-Changelog-30.md ├── _redirects ├── _sass └── lineage │ ├── _tables.scss │ ├── buttons.scss │ ├── cards.scss │ ├── code.scss │ ├── footer.scss │ ├── grid.scss │ ├── jumbotron.scss │ ├── misc.scss │ ├── mixins.scss │ ├── mixins │ ├── _animations.scss │ ├── _breakpoints.scss │ ├── _grid-framework.scss │ ├── _grid.scss │ ├── _hover.scss │ └── _table-row.scss │ ├── navbar.scss │ ├── posts.scss │ ├── responsive.scss │ ├── ripple.scss │ ├── sections.scss │ ├── type.scss │ ├── utilities.scss │ ├── variables.scss │ └── variables │ ├── _brand.scss │ ├── _colors.scss │ ├── _type.scss │ ├── bs-functions.scss │ └── bs-variables.scss ├── about.md ├── assets ├── css │ └── material-kit.scss ├── img │ ├── icons.webp │ ├── jumbotron_hero_bg.webp │ ├── longevity.webp │ ├── peek_device.webp │ ├── power_bg.webp │ ├── security.webp │ └── styles.webp └── js │ └── material-kit.js ├── blog.html ├── community.html ├── engineering.html ├── feed-engineering.xml ├── feed.xml ├── images ├── 2017-03-06 │ └── onehand-navbar.mp4 ├── 2017-04-01 │ └── mascot.gif ├── 2017-12-24 │ └── lineageos-1st-birthday-infographic.webp ├── 2018-02-25 │ └── lineageos-15.1-hero.webp ├── 2018-03-20 │ └── lineagesdk-hero.webp ├── 2018-04-01 │ └── loscoin-hero.webp ├── 2018-05-25 │ └── hero.webp ├── 2018-06-12 │ └── hero.webp ├── 2018-07-19 │ └── hero.webp ├── 2018-08-02 │ └── hero.webp ├── 2018-09-17 │ └── hero.webp ├── 2018-11-27 │ └── hero.webp ├── 2019-03-01 │ └── hero.webp ├── 2019-07-02 │ └── hero.webp ├── 2020-04-01 │ └── hero.webp ├── 2021-04-01 │ └── hero.webp ├── 2022-04-26 │ └── hero.webp ├── 2022-12-31 │ ├── aperture.webp │ └── hero.webp ├── 2024-02-14 │ ├── calculator.webp │ ├── dialer.webp │ ├── glimpse.webp │ ├── hero.webp │ └── jelly.webp ├── 2024-12-31 │ ├── hero.webp │ └── twelve.webp ├── 2025-10-11 │ ├── catapult.webp │ └── hero.webp ├── engineering │ ├── content_android_stack.webp │ ├── content_bluetooth_sbc_xq_0.webp │ ├── content_bluetooth_sbc_xq_1.webp │ ├── content_bluetooth_sbc_xq_2.webp │ ├── content_bluetooth_sbc_xq_3.webp │ ├── content_bluetooth_sbc_xq_4.webp │ ├── content_qualcomm_crashdump.webp │ ├── content_qualcomm_firmware_0.webp │ ├── content_qualcomm_firmware_1.webp │ ├── content_qualcomm_firmware_2.webp │ ├── content_telephony_0.webp │ ├── hero_bluetooth_sbc_xq.webp │ ├── hero_debugging.webp │ ├── hero_qualcomm_firmware.webp │ ├── hero_selinux.webp │ └── hero_telephony.webp └── logo.webp ├── index.html ├── legal.md └── mirror.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/.gitreview -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/404.html -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | lineageos.org -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/LICENSE -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/community.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_data/community.yml -------------------------------------------------------------------------------- /_engineering/Bluetooth-SBC-XQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_engineering/Bluetooth-SBC-XQ.md -------------------------------------------------------------------------------- /_engineering/HowTo-Debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_engineering/HowTo-Debugging.md -------------------------------------------------------------------------------- /_engineering/HowTo-SELinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_engineering/HowTo-SELinux.md -------------------------------------------------------------------------------- /_engineering/Qualcomm-Firmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_engineering/Qualcomm-Firmware.md -------------------------------------------------------------------------------- /_engineering/Telephony.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_engineering/Telephony.md -------------------------------------------------------------------------------- /_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_headers -------------------------------------------------------------------------------- /_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_includes/disqus.html -------------------------------------------------------------------------------- /_includes/footer-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_includes/footer-icons.html -------------------------------------------------------------------------------- /_includes/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_includes/meta.html -------------------------------------------------------------------------------- /_includes/svg/apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_includes/svg/apps.svg -------------------------------------------------------------------------------- /_includes/svg/lineage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_includes/svg/lineage.svg -------------------------------------------------------------------------------- /_includes/svg/lineage_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_includes/svg/lineage_logo.svg -------------------------------------------------------------------------------- /_includes/svg/trust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_includes/svg/trust.svg -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/blog/2016-12-24-Yes-this-is-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2016-12-24-Yes-this-is-us.md -------------------------------------------------------------------------------- /_posts/blog/2016-12-28-Infrastructure-Status-and-Official-Builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2016-12-28-Infrastructure-Status-and-Official-Builds.md -------------------------------------------------------------------------------- /_posts/blog/2017-01-20-Update-and-Build-Prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-01-20-Update-and-Build-Prep.md -------------------------------------------------------------------------------- /_posts/blog/2017-02-13-Last-Week-in-LineageOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-02-13-Last-Week-in-LineageOS.md -------------------------------------------------------------------------------- /_posts/blog/2017-02-20-Last-Week-in-LineageOS-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-02-20-Last-Week-in-LineageOS-2.md -------------------------------------------------------------------------------- /_posts/blog/2017-02-27-Last-Week-in-LineageOS-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-02-27-Last-Week-in-LineageOS-3.md -------------------------------------------------------------------------------- /_posts/blog/2017-03-06-Last-Week-in-LineageOS-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-03-06-Last-Week-in-LineageOS-4.md -------------------------------------------------------------------------------- /_posts/blog/2017-03-20-Last-Week-in-LineageOS-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-03-20-Last-Week-in-LineageOS-5.md -------------------------------------------------------------------------------- /_posts/blog/2017-04-01-Announcing-our-Mascot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-04-01-Announcing-our-Mascot.md -------------------------------------------------------------------------------- /_posts/blog/2017-04-04-Last-Week-in-LineageOS-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-04-04-Last-Week-in-LineageOS-6.md -------------------------------------------------------------------------------- /_posts/blog/2017-04-18-Last-2-Weeks-in-LineageOS-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-04-18-Last-2-Weeks-in-LineageOS-7.md -------------------------------------------------------------------------------- /_posts/blog/2017-05-02-Changelog-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-05-02-Changelog-8.md -------------------------------------------------------------------------------- /_posts/blog/2017-05-15-Changelog-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-05-15-Changelog-9.md -------------------------------------------------------------------------------- /_posts/blog/2017-05-31-Changelog-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-05-31-Changelog-10.md -------------------------------------------------------------------------------- /_posts/blog/2017-06-05-PlayIntegrity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-06-05-PlayIntegrity.md -------------------------------------------------------------------------------- /_posts/blog/2017-06-12-Changelog-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-06-12-Changelog-11.md -------------------------------------------------------------------------------- /_posts/blog/2017-07-03-Changelog-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-07-03-Changelog-12.md -------------------------------------------------------------------------------- /_posts/blog/2017-08-08-Changelog-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-08-08-Changelog-13.md -------------------------------------------------------------------------------- /_posts/blog/2017-08-18-Summer-Survey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-08-18-Summer-Survey.md -------------------------------------------------------------------------------- /_posts/blog/2017-09-23-Changelog-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-09-23-Changelog-14.md -------------------------------------------------------------------------------- /_posts/blog/2017-10-16-Summer-Survey-Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-10-16-Summer-Survey-Results.md -------------------------------------------------------------------------------- /_posts/blog/2017-12-05-Changelog-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-12-05-Changelog-15.md -------------------------------------------------------------------------------- /_posts/blog/2017-12-24-Celebrating-one-year-of-LineageOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2017-12-24-Celebrating-one-year-of-LineageOS.md -------------------------------------------------------------------------------- /_posts/blog/2018-02-25-Changelog-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-02-25-Changelog-16.md -------------------------------------------------------------------------------- /_posts/blog/2018-03-20-Introducing-the-LineageSDK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-03-20-Introducing-the-LineageSDK.md -------------------------------------------------------------------------------- /_posts/blog/2018-04-01-Changelog-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-04-01-Changelog-17.md -------------------------------------------------------------------------------- /_posts/blog/2018-04-10-An-April-Apology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-04-10-An-April-Apology.md -------------------------------------------------------------------------------- /_posts/blog/2018-05-25-Changelog-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-05-25-Changelog-18.md -------------------------------------------------------------------------------- /_posts/blog/2018-06-12-Trust-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-06-12-Trust-me.md -------------------------------------------------------------------------------- /_posts/blog/2018-07-19-Changelog-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-07-19-Changelog-19.md -------------------------------------------------------------------------------- /_posts/blog/2018-08-02-Summer-Survey-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-08-02-Summer-Survey-2.md -------------------------------------------------------------------------------- /_posts/blog/2018-09-17-Changelog-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-09-17-Changelog-20.md -------------------------------------------------------------------------------- /_posts/blog/2018-11-05-Summer-Survey-2-Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-11-05-Summer-Survey-2-Results.md -------------------------------------------------------------------------------- /_posts/blog/2018-11-27-Changelog-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2018-11-27-Changelog-21.md -------------------------------------------------------------------------------- /_posts/blog/2019-03-01-Changelog-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2019-03-01-Changelog-22.md -------------------------------------------------------------------------------- /_posts/blog/2019-07-02-Changelog-23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2019-07-02-Changelog-23.md -------------------------------------------------------------------------------- /_posts/blog/2020-04-01-Changelog-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2020-04-01-Changelog-24.md -------------------------------------------------------------------------------- /_posts/blog/2021-04-01-Changelog-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2021-04-01-Changelog-25.md -------------------------------------------------------------------------------- /_posts/blog/2022-04-26-Changelog-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2022-04-26-Changelog-26.md -------------------------------------------------------------------------------- /_posts/blog/2022-12-31-Changelog-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2022-12-31-Changelog-27.md -------------------------------------------------------------------------------- /_posts/blog/2024-02-14-Changelog-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2024-02-14-Changelog-28.md -------------------------------------------------------------------------------- /_posts/blog/2024-03-05-Sunsetting-LineageOS-18.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2024-03-05-Sunsetting-LineageOS-18.1.md -------------------------------------------------------------------------------- /_posts/blog/2024-12-31-Changelog-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2024-12-31-Changelog-29.md -------------------------------------------------------------------------------- /_posts/blog/2025-10-11-Changelog-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_posts/blog/2025-10-11-Changelog-30.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_redirects -------------------------------------------------------------------------------- /_sass/lineage/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/_tables.scss -------------------------------------------------------------------------------- /_sass/lineage/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/buttons.scss -------------------------------------------------------------------------------- /_sass/lineage/cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/cards.scss -------------------------------------------------------------------------------- /_sass/lineage/code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/code.scss -------------------------------------------------------------------------------- /_sass/lineage/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/footer.scss -------------------------------------------------------------------------------- /_sass/lineage/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/grid.scss -------------------------------------------------------------------------------- /_sass/lineage/jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/jumbotron.scss -------------------------------------------------------------------------------- /_sass/lineage/misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/misc.scss -------------------------------------------------------------------------------- /_sass/lineage/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/mixins.scss -------------------------------------------------------------------------------- /_sass/lineage/mixins/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/mixins/_animations.scss -------------------------------------------------------------------------------- /_sass/lineage/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /_sass/lineage/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /_sass/lineage/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/mixins/_grid.scss -------------------------------------------------------------------------------- /_sass/lineage/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/mixins/_hover.scss -------------------------------------------------------------------------------- /_sass/lineage/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/mixins/_table-row.scss -------------------------------------------------------------------------------- /_sass/lineage/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/navbar.scss -------------------------------------------------------------------------------- /_sass/lineage/posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/posts.scss -------------------------------------------------------------------------------- /_sass/lineage/responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/responsive.scss -------------------------------------------------------------------------------- /_sass/lineage/ripple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/ripple.scss -------------------------------------------------------------------------------- /_sass/lineage/sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/sections.scss -------------------------------------------------------------------------------- /_sass/lineage/type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/type.scss -------------------------------------------------------------------------------- /_sass/lineage/utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/utilities.scss -------------------------------------------------------------------------------- /_sass/lineage/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/variables.scss -------------------------------------------------------------------------------- /_sass/lineage/variables/_brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/variables/_brand.scss -------------------------------------------------------------------------------- /_sass/lineage/variables/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/variables/_colors.scss -------------------------------------------------------------------------------- /_sass/lineage/variables/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/variables/_type.scss -------------------------------------------------------------------------------- /_sass/lineage/variables/bs-functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/variables/bs-functions.scss -------------------------------------------------------------------------------- /_sass/lineage/variables/bs-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/_sass/lineage/variables/bs-variables.scss -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/about.md -------------------------------------------------------------------------------- /assets/css/material-kit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/assets/css/material-kit.scss -------------------------------------------------------------------------------- /assets/img/icons.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/assets/img/icons.webp -------------------------------------------------------------------------------- /assets/img/jumbotron_hero_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/assets/img/jumbotron_hero_bg.webp -------------------------------------------------------------------------------- /assets/img/longevity.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/assets/img/longevity.webp -------------------------------------------------------------------------------- /assets/img/peek_device.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/assets/img/peek_device.webp -------------------------------------------------------------------------------- /assets/img/power_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/assets/img/power_bg.webp -------------------------------------------------------------------------------- /assets/img/security.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/assets/img/security.webp -------------------------------------------------------------------------------- /assets/img/styles.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/assets/img/styles.webp -------------------------------------------------------------------------------- /assets/js/material-kit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/assets/js/material-kit.js -------------------------------------------------------------------------------- /blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/blog.html -------------------------------------------------------------------------------- /community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/community.html -------------------------------------------------------------------------------- /engineering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/engineering.html -------------------------------------------------------------------------------- /feed-engineering.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/feed-engineering.xml -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/feed.xml -------------------------------------------------------------------------------- /images/2017-03-06/onehand-navbar.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2017-03-06/onehand-navbar.mp4 -------------------------------------------------------------------------------- /images/2017-04-01/mascot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2017-04-01/mascot.gif -------------------------------------------------------------------------------- /images/2017-12-24/lineageos-1st-birthday-infographic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2017-12-24/lineageos-1st-birthday-infographic.webp -------------------------------------------------------------------------------- /images/2018-02-25/lineageos-15.1-hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2018-02-25/lineageos-15.1-hero.webp -------------------------------------------------------------------------------- /images/2018-03-20/lineagesdk-hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2018-03-20/lineagesdk-hero.webp -------------------------------------------------------------------------------- /images/2018-04-01/loscoin-hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2018-04-01/loscoin-hero.webp -------------------------------------------------------------------------------- /images/2018-05-25/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2018-05-25/hero.webp -------------------------------------------------------------------------------- /images/2018-06-12/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2018-06-12/hero.webp -------------------------------------------------------------------------------- /images/2018-07-19/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2018-07-19/hero.webp -------------------------------------------------------------------------------- /images/2018-08-02/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2018-08-02/hero.webp -------------------------------------------------------------------------------- /images/2018-09-17/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2018-09-17/hero.webp -------------------------------------------------------------------------------- /images/2018-11-27/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2018-11-27/hero.webp -------------------------------------------------------------------------------- /images/2019-03-01/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2019-03-01/hero.webp -------------------------------------------------------------------------------- /images/2019-07-02/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2019-07-02/hero.webp -------------------------------------------------------------------------------- /images/2020-04-01/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2020-04-01/hero.webp -------------------------------------------------------------------------------- /images/2021-04-01/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2021-04-01/hero.webp -------------------------------------------------------------------------------- /images/2022-04-26/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2022-04-26/hero.webp -------------------------------------------------------------------------------- /images/2022-12-31/aperture.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2022-12-31/aperture.webp -------------------------------------------------------------------------------- /images/2022-12-31/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2022-12-31/hero.webp -------------------------------------------------------------------------------- /images/2024-02-14/calculator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2024-02-14/calculator.webp -------------------------------------------------------------------------------- /images/2024-02-14/dialer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2024-02-14/dialer.webp -------------------------------------------------------------------------------- /images/2024-02-14/glimpse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2024-02-14/glimpse.webp -------------------------------------------------------------------------------- /images/2024-02-14/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2024-02-14/hero.webp -------------------------------------------------------------------------------- /images/2024-02-14/jelly.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2024-02-14/jelly.webp -------------------------------------------------------------------------------- /images/2024-12-31/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2024-12-31/hero.webp -------------------------------------------------------------------------------- /images/2024-12-31/twelve.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2024-12-31/twelve.webp -------------------------------------------------------------------------------- /images/2025-10-11/catapult.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2025-10-11/catapult.webp -------------------------------------------------------------------------------- /images/2025-10-11/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/2025-10-11/hero.webp -------------------------------------------------------------------------------- /images/engineering/content_android_stack.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_android_stack.webp -------------------------------------------------------------------------------- /images/engineering/content_bluetooth_sbc_xq_0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_bluetooth_sbc_xq_0.webp -------------------------------------------------------------------------------- /images/engineering/content_bluetooth_sbc_xq_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_bluetooth_sbc_xq_1.webp -------------------------------------------------------------------------------- /images/engineering/content_bluetooth_sbc_xq_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_bluetooth_sbc_xq_2.webp -------------------------------------------------------------------------------- /images/engineering/content_bluetooth_sbc_xq_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_bluetooth_sbc_xq_3.webp -------------------------------------------------------------------------------- /images/engineering/content_bluetooth_sbc_xq_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_bluetooth_sbc_xq_4.webp -------------------------------------------------------------------------------- /images/engineering/content_qualcomm_crashdump.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_qualcomm_crashdump.webp -------------------------------------------------------------------------------- /images/engineering/content_qualcomm_firmware_0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_qualcomm_firmware_0.webp -------------------------------------------------------------------------------- /images/engineering/content_qualcomm_firmware_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_qualcomm_firmware_1.webp -------------------------------------------------------------------------------- /images/engineering/content_qualcomm_firmware_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_qualcomm_firmware_2.webp -------------------------------------------------------------------------------- /images/engineering/content_telephony_0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/content_telephony_0.webp -------------------------------------------------------------------------------- /images/engineering/hero_bluetooth_sbc_xq.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/hero_bluetooth_sbc_xq.webp -------------------------------------------------------------------------------- /images/engineering/hero_debugging.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/hero_debugging.webp -------------------------------------------------------------------------------- /images/engineering/hero_qualcomm_firmware.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/hero_qualcomm_firmware.webp -------------------------------------------------------------------------------- /images/engineering/hero_selinux.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/hero_selinux.webp -------------------------------------------------------------------------------- /images/engineering/hero_telephony.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/engineering/hero_telephony.webp -------------------------------------------------------------------------------- /images/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/images/logo.webp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/index.html -------------------------------------------------------------------------------- /legal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/legal.md -------------------------------------------------------------------------------- /mirror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineageOS/www/HEAD/mirror.md --------------------------------------------------------------------------------