├── .gitignore ├── LICENSE ├── README.md ├── Screenshots ├── Installation │ ├── branch.png │ ├── checkout.png │ ├── checkout2.png │ ├── device.png │ ├── identifier.png │ └── team.png ├── episode.png ├── home.png ├── popular.png ├── recent.png └── search.png ├── UitzendingGemist.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── jeff.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── jeff.xcuserdatad │ └── xcschemes │ ├── UitzendingGemist.xcscheme │ └── xcschememanagement.plist ├── UitzendingGemist ├── AppDelegate.swift ├── AppIconCollection.sketch ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - Large.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Back.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Front.png │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Middle.png │ │ │ │ └── Contents.json │ │ ├── App Icon - Small.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Back.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Front.png │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Middle.png │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── UitzendingGemistTests ├── Info.plist └── UitzendingGemistTests.swift ├── UitzendingGemistUITests ├── Info.plist └── UitzendingGemistUITests.swift └── client ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Rakefile ├── images └── static.gif ├── js ├── Episode.js ├── Presenter.js ├── ResourceLoader.js ├── Series.js ├── application.js └── uitzendinggemist.js └── templates ├── Episode.xml.js ├── MenuBar.xml.js ├── Popular.xml.js ├── Recent.xml.js └── Search.xml.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | DerivedData/ 3 | Build/ 4 | w/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Installation/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/Installation/branch.png -------------------------------------------------------------------------------- /Screenshots/Installation/checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/Installation/checkout.png -------------------------------------------------------------------------------- /Screenshots/Installation/checkout2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/Installation/checkout2.png -------------------------------------------------------------------------------- /Screenshots/Installation/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/Installation/device.png -------------------------------------------------------------------------------- /Screenshots/Installation/identifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/Installation/identifier.png -------------------------------------------------------------------------------- /Screenshots/Installation/team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/Installation/team.png -------------------------------------------------------------------------------- /Screenshots/episode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/episode.png -------------------------------------------------------------------------------- /Screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/home.png -------------------------------------------------------------------------------- /Screenshots/popular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/popular.png -------------------------------------------------------------------------------- /Screenshots/recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/recent.png -------------------------------------------------------------------------------- /Screenshots/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/Screenshots/search.png -------------------------------------------------------------------------------- /UitzendingGemist.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UitzendingGemist.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UitzendingGemist.xcodeproj/project.xcworkspace/xcuserdata/jeff.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist.xcodeproj/project.xcworkspace/xcuserdata/jeff.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UitzendingGemist.xcodeproj/xcuserdata/jeff.xcuserdatad/xcschemes/UitzendingGemist.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist.xcodeproj/xcuserdata/jeff.xcuserdatad/xcschemes/UitzendingGemist.xcscheme -------------------------------------------------------------------------------- /UitzendingGemist.xcodeproj/xcuserdata/jeff.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist.xcodeproj/xcuserdata/jeff.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UitzendingGemist/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/AppDelegate.swift -------------------------------------------------------------------------------- /UitzendingGemist/AppIconCollection.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/AppIconCollection.sketch -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Back.png -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Front.png -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Middle.png -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Back.png -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Front.png -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Middle.png -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /UitzendingGemist/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UitzendingGemist/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/Info.plist -------------------------------------------------------------------------------- /UitzendingGemist/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemist/ViewController.swift -------------------------------------------------------------------------------- /UitzendingGemistTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemistTests/Info.plist -------------------------------------------------------------------------------- /UitzendingGemistTests/UitzendingGemistTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemistTests/UitzendingGemistTests.swift -------------------------------------------------------------------------------- /UitzendingGemistUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemistUITests/Info.plist -------------------------------------------------------------------------------- /UitzendingGemistUITests/UitzendingGemistUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/UitzendingGemistUITests/UitzendingGemistUITests.swift -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | env.rb 2 | -------------------------------------------------------------------------------- /client/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/Gemfile -------------------------------------------------------------------------------- /client/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/Gemfile.lock -------------------------------------------------------------------------------- /client/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/Rakefile -------------------------------------------------------------------------------- /client/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/images/static.gif -------------------------------------------------------------------------------- /client/js/Episode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/js/Episode.js -------------------------------------------------------------------------------- /client/js/Presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/js/Presenter.js -------------------------------------------------------------------------------- /client/js/ResourceLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/js/ResourceLoader.js -------------------------------------------------------------------------------- /client/js/Series.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/js/Series.js -------------------------------------------------------------------------------- /client/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/js/application.js -------------------------------------------------------------------------------- /client/js/uitzendinggemist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/js/uitzendinggemist.js -------------------------------------------------------------------------------- /client/templates/Episode.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/templates/Episode.xml.js -------------------------------------------------------------------------------- /client/templates/MenuBar.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/templates/MenuBar.xml.js -------------------------------------------------------------------------------- /client/templates/Popular.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/templates/Popular.xml.js -------------------------------------------------------------------------------- /client/templates/Recent.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/templates/Recent.xml.js -------------------------------------------------------------------------------- /client/templates/Search.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkreeftmeijer/UitzendingGemist/HEAD/client/templates/Search.xml.js --------------------------------------------------------------------------------