-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1657 lines (1266 loc) · 41.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Queer Fans Deserve Data</title>
<meta name="description" content="The LezWatch.TV story of fandom, passion, code and the desire to see fair and positive LGBTQ representation on television.">
<meta name="author" content="Tracy Levesque">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/lezwatch.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
<!-- FontAwesome -->
<script defer src="js/all.min.js"></script>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-background="img/lwtv-hero-background.jpg">
<h1>Queer Fans Deserve Data</h1>
<h3>Fandom, passion, code and the desire to see fair and positive LGBTQ representation on television</h3>
<p>
<small>The <a href="https://lezwatchtv.com/" target="_blank">LezWatch.TV</a> story</small>
</p>
<aside class="notes">
The notes are working.
</aside>
</section>
<section>
<div class="huge">I <i class="fas fa-heart"></i> <i class="fas fa-tv-retro"></i></div>
<aside class="notes">
I'm a TV person. It was my babysitter growing up and now it's like a glowing friend in the room or sometimes more like a sister wife.
</aside>
</section>
<section>
<div class="huge">1970</div>
<aside class="notes">
I was born in 1970, the same year another amazing thing was born: All My Children.<br>
Video: AMC Intro.
</aside>
</section>
<section data-background-video="video/amc.mp4" data-background-color="#000000">
<aside class="notes">
Earliest memories - Mom watching AMC while while fed baby brother. Must have been 3. I watched it too.
</aside>
</section>
<section data-background="img/erica-kane.png">
<aside class="notes">
I remember getting invested in the stories and especially hating Erica Kane.
</aside>
</section>
<section>
<div class="huge"><i class="fas fa-fast-forward"></i> 1988</div>
<aside class="notes">
Came out in 1988 nothing on TV except talk shows. We'd all gather round. Usually something like this.<br>
Video: Phil
</aside>
</section>
<section data-background-video="video/donahue.mp4" data-background-color="#000000">
</section>
<section>
<div class="huge"><i class="fas fa-fast-forward"></i> 2000</div>
<aside class="notes">
FF 12 years later to 2000, a post-Ellen world. With Mia. She loved AMC too! Come home watch Tivo. Christmas Eve 2000 after endless almost happened episodes, this happened.<br>
Video: Bianca coming out.
</aside>
</section>
<section data-background-video="video/amc-imgay.mp4" data-background-color="#000000">
<aside class="notes">
I like the no music. Erica Kane's daughter, Bianca coming out was a HUGE deal.
</aside>
</section>
<section>
<div class="huge">2003</div>
<h3>Daytime's first wlw kiss</h3>
<aside class="notes">
Then 3 years later in April 2003 we had the first ever daytime soap lesbian kiss.<br>
Video: Lena and Bianca kiss
</aside>
</section>
<section data-background-video="video/lena-and-bianca.mp4" data-background-color="#000000">
<aside class="notes">
Talk over video.<br>
It was a classic airport terminal kiss between Lena and Bianca.
</aside>
</section>
<section>
<div class="huge">2004</div>
<h3>BAM</h3>
<aside class="notes">
Then in 2004, after what felt like forever, Bianca kissed her friend Maggie.<br>
Bianca and Maggie kiss.
</aside>
</section>
<section data-background-video="video/bam.mp4" data-background-color="#000000">
<aside class="notes">
Wait for video.<br>
Bianca and Maggie, aka BAM, was the first fandom got invested in and ever followed online.
</aside>
</section>
<section data-background="img/bamfans.png">
<aside class="notes">
BAMFans website. <br>
I naturally took to the web to find this community, because...
</aside>
</section>
<section>
<div class="huge">I <i class="fas fa-heart"></i> <i class="fas fa-laptop-code"></i></div>
<aside class="notes">
I'm also a computer geek and web developer.
</aside>
</section>
<section data-background="img/yikes.jpg">
<aside class="notes">
My wife Mia and I own a web development company in Philadelphia.
</aside>
</section>
<section data-background="img/code.jpg">
<aside class="notes">
I write code like this almost every day.
</aside>
</section>
<section>
<div class="huge">I <i class="fas fa-heart"></i> <i class="fab fa-wordpress-simple"></i></div>
<aside class="notes">
I also love WordPress. WP is open source software used to build, design and maintain a website. Open source means Community, local speaking.
</aside>
</section>
<section>
<div class="huge"><i class="fas fa-fast-forward"></i> 2013</div>
<aside class="notes">
FF again 9 years to 2013. Applied and got accepted to speak at WCSF.
</aside>
</section>
<section data-background="img/wcsf.jpg">
<aside class="notes">
Biggest WC in the country. Flew out by myself. Didn't know anyone. Speaker dinner spotted a lesbian, I'll talk to her. That lesbian turned out to be Mika.
</aside>
</section>
<section>
<p>
<img src="img/women.png" alt="">
</p>
<aside class="notes">
This is Mika at the WCSF 2013 after party. That pic's hard to see.
</aside>
</section>
<section data-background="img/mika.jpg">
<aside class="notes">
Even though West Coast, Became friends, met up at WC's, started chatting online. Both = encyclopedic knowledge of queer TV. And I wold watch anything with gay in it. For Example.
</aside>
</section>
<section data-background="img/CFDPS.jpg">
<h3 style="margin-top: 340px;">Another show I watched just for the gay.</h3>
<aside class="notes">
</aside>
</section>
<section data-background="img/chicagofire.png">
<aside class="notes">
Her name is Shay.<br>
Season 2 finale, big explosion cliffhanger. During the hiatus they teased someone died in the explosion.
</aside>
</section>
<section>
<h1>September 23, 2014</h1>
<aside class="notes">
On September 23, 2014 Season 3 premiered and we would find out who died.<br>
Video: Shay dead.
</aside>
</section>
<section data-background-video="video/shaydead.mp4" data-background-color="#000000">
<aside class="notes">
Guess who it was.
</aside>
</section>
<section>
<div class="huge"><i class="far fa-angry"></i></div>
<aside class="notes">
I was furious and chatting with Mika online. We need a database of shows with queer characters to know if a show is worth watching.
</aside>
</section>
<section>
<p>
<img src="img/emails.png" alt="">
</p>
<aside class="notes">
Sprung into action. Mika works at a hosting company, spun up an account. I started working on the theme and we both started working on the backend code.
</aside>
</section>
<section>
<p>
<img src="img/data-v1.png" alt="">
</p>
<aside class="notes">
V1 data architecture.
</aside>
</section>
<section>
<h1>Post Types</h1>
<aside class="notes">
We had 2 major post types.
</aside>
</section>
<section>
<h1>Shows</h1>
<h2>Metadata</h2>
<ul>
<li>Worth It?</li>
<li>Realness</li>
<li>Quality</li>
<li>Screentime</li>
<li>Queer Timeline</li>
<li>Notable Episodes</li>
</ul>
<aside class="notes">
Notable: Callie and Arizona's wedding on Grey's or when Alex and Maggie kiss for real for the first time on Supergirl.
</aside>
</section>
<section>
<h1>Characters</h1>
<h2>Metadata</h2>
<ul>
<li>Gender Identity</li>
<li>Sexual Orientation</li>
<li>Actor Name</li>
</ul>
<aside class="notes">
Characters connected to shows
</aside>
</section>
<section>
<h1>Taxonomies</h1>
<ul>
<li>Tropes - Used by Shows</li>
<li>Stations - Used by Shows</li>
<li>Clichés - Used by Characters</li>
</ul>
<aside class="notes">
Tropes: Bury Your Queers, Coming Out, Bisexual Love Triangle, Babies<br>
Clichés: Addict, Bartender, Prisoner, Closeted
</aside>
</section>
<section>
<p class="tall-content">
<img src="img/sitev1.jpg" alt="">
</p>
<aside class="notes">
In October 2014 we had the first version of the site. Embarrassingly monosexual. We fixed that later.
</aside>
</section>
<section>
<h1>2015</h1>
<h2>Characters</h2>
<ul>
<li>Roles: Main, Recurring or Guest</li>
<li>Death Date</li>
</ul>
<h2 class="mt2">Taxonomies</h2>
<ul>
<li>Nations</li>
</ul>
<aside class="notes">
</aside>
</section>
<section>
<h1>2016</h1>
<h2>Shows</h2>
<ul>
<li>Stars: Gold, Silver or Bronze</li>
<li>Warnings</li>
<li>Airdates</li>
<li>IMdB ID</li>
</ul>
<aside class="notes">
</aside>
</section>
<section>
<h1>2016</h1>
<h2>Taxonomies</h2>
<ul>
<li>Formats - Used by Shows</li>
<li>Genres - Used by Shows</li>
</ul>
<aside class="notes">
Formats: Webseries, Mini-Series, TV Show, TV Movie, etc.<br>
Genres: Drama, Comedy, Sci-Fi
</aside>
</section>
<section>
<p class="tall-content">
<img src="img/sitev2.jpg" alt="">
</p>
<aside class="notes">
A little better, still some monosexual content.
</aside>
</section>
<section>
<div class="huge"><i class="far fa-pause-circle"></i></div>
<aside class="notes">
Pause for a second. 2015-2016 my life was taken over by being a co-organizer for WCUS. The first US National WordCamp. I barely helped with the site or anything else in my life for those 2 years.
</aside>
</section>
<section>
<p>
<img src="img/wcus.jpg" alt="">
</p>
<aside class="notes">
Looking official, headset and everything. That was done Dec 2016 and after a break in 2017 I was ready to jump back in. I also recruited a straight, cis, male employee to help with a redesign.
</aside>
</section>
<section>
<h1>2017</h1>
<h2>Shows</h2>
<ul>
<li>Shows We Love</li>
</ul>
<h2 class="mt2">Taxonomies</h2>
<ul>
<li>Romantic Orientation - Used by Characters</li>
</ul>
<aside class="notes">
</aside>
</section>
<section>
<h1>October 2017</h1>
<aside class="notes">
We had a big sprint on the new theme. I non-stop worked on the new theme for weeks.
</aside>
</section>
<section>
<p>
<img src="img/commits.png" alt="">
</p>
<aside class="notes">
We have all of our code on Github and you can see the graph of commits made in October. Then towards the
</aside>
</section>
<section>
<p class="tall-content">
<img src="img/sitev3.jpg" alt="">
</p>
<aside class="notes">
</aside>
</section>
<section>
<div class="huge"><i class="far fa-grin"></i></div>
<aside class="notes">
Time to celebrate!
</aside>
</section>
<section>
<div class="huge"><i class="fas fa-exclamation-circle"></i> <i class="far fa-surprise"></i></div>
<aside class="notes">
We ran into some unforeseen issues. The first one we call...
</aside>
</section>
<section>
<h1>The L Word Overload</h1>
<p class="fragment">
Too many characters.
</p>
<aside class="notes">
</aside>
</section>
<section>
<p>
<img src="img/lword-characters.png" class="plain" alt="">
</p>
<aside class="notes">
</aside>
</section>
<section>
<h1>The L Word Characters</h1>
<ul>
<li>10 Regulars</li>
<li>14 Recurring</li>
<li>38 Guest</li>
</ul>
<p>
= 96 second load time
</p>
<aside class="notes">
</aside>
</section>
<section>
<h1>~1 Second</h1>
<aside class="notes">
Better database queries, caching
</aside>
</section>
<section>
<h1>The Orphan Black Clone Conundrum</h1>
<p class="fragment">
One actor playing different characters with different roles on a single show.
</p>
<aside class="notes">
</aside>
</section>
<section>
<p>
<img src="img/tatiana.png" alt="">
</p>
<aside class="notes">
See, the official Emmys site couldn't fit them all.<br>
Cosima is a main and Tony was a guest.
</aside>
</section>
<section>
<h1>Orphan Black</h1>
<p>
<img src="img/ob-characters.png" alt="" class="plain">
</p>
<aside class="notes">
</aside>
</section>
<section>
<h1>Soap Operas</h1>
<p class="fragment">
Multiple actors playing the same character.
</p>
<aside class="notes">
</aside>
</section>
<section>
<h1>All My Children</h1>
<p>
<img src="img/amc-characters.png" alt="">
</p>
<aside class="notes">
Multiple actors playing the same character. This one has the clone issue, too.
</aside>
</section>
<section>
<h2>Determine which actor primarily represents the character</h2>
<p>
<img src="img/bianca.png" alt="" class="plain">
</p>
<aside class="notes">
Eden Riegel is the Bianca we know best.
</aside>
</section>
<section>
<h1>The Biggest Code Challenge of Them all</h1>
<aside class="notes">
The most complicated hurdle on the site to date.
</aside>
</section>
<section>
<h1>Sara F*cking Lance</h1>
<aside class="notes">
</aside>
</section>
<section data-background="img/sara-lance.jpg">
<aside class="notes">
We love our time-traveling, bisexual, Captain of the Waverider. But she has a dying problem.<br>
Video: Damien Dhark.
</aside>
</section>
<section data-background-video="video/dead-for-very-long.mp4">
<aside class="notes">
</aside>
</section>
<section>
<h1>Sara Lance</h1>
<h2>Has died and come back to life 3 major times</h2>
<aside class="notes">
</aside>
</section>
<section>
<h1>Sara Lance</h1>
<h2>Has been played by 2 different actors</h2>
<aside class="notes">
</aside>
</section>
<section data-background="img/arrow-pilot.jpg">
<aside class="notes">
She was played by Jacqueline MacInnes Wood in the Pilot episode of Arrow.
</aside>
</section>
<section>
<h1>Sara Lance</h1>
<h2>Has been on four different shows with different roles</h2>
<aside class="notes">
</aside>
</section>
<section data-background="img/sl-lot.jpg">
<h1>Legends of Tomorrow - Main</h1>
<aside class="notes">
</aside>
</section>
<section data-background="img/sl-arrow.jpg">
<h1>Arrow - Recurring</h1>
<aside class="notes">
</aside>
</section>
<section data-background="img/sl-sg.jpg">
<h1>Supergirl - Guest</h1>
<aside class="notes">
</aside>
</section>
<section data-background="img/sl-flash.jpg">
<h1>The Flash - Guest</h1>
<aside class="notes">
This forced us to think about how we are going to enter and display this data in a way that makes sense.
</aside>
</section>
<section>
<h1>Sara Lance</h1>
<p>
<img src="img/saralance.png" class="plain" alt="">
</p>
<aside class="notes">
It took Mika a lot of work to make this profile work correctly.
</aside>
</section>
<section>
<h1>Make Data Better</h1>
<aside class="notes">
As web developers we are always thinking of how we can make the site better. In the dev phase that comes from us, but when the site starts getting traffic, it comes from our users.
</aside>
</section>
<section>
<h1>In 2017 We Added</h1>
<h2 class="fragment">
Actors
</h2>
<aside class="notes">
Looking at the stats people were looking up out queer actors.
</aside>
</section>
<section>
<div class="huge">?????</div>
<p class="fragment">
Didn't the site already have actors?
</p>
<aside class="notes">
But wait a minute, I mentioned actors in v1 of the data architecture. They were a text field where we typed in the actor's name. No continuity, not robust enough to do what we want.
</aside>
</section>
<section>
<h1>Actors</h1>
<h2>Post Type or a Taxonomy?</h2>
<aside class="notes">
Post type: Easily add metadata, connect to other post types, and use taxonomies.<br>
Taxonomies: Can add metadata, can apply to any post type, making templates is a little trickier.
</aside>
</section>
<section>
<h1>New Post Type: Actors</h1>
<h2>Metadata</h2>
<ul>
<li>Actor Name</li>
<li>Gender Identity</li>
<li>Sexual Orientation</li>
<li>Birth and death dates</li>
<li>Social accounts</li>
<li>IMdB and Wikipedia links</li>
</ul>
<aside class="notes">
</aside>
</section>
<section>
<p class="tall-content">
<img src="img/ali.jpg" alt="" class="plain">
</p>
<aside class="notes">
Lookin' Good.
</aside>
</section>
<section>
<h2>Text Field <i class="far fa-arrow-circle-right"></i> Actor Post Type</h2>
<aside class="notes">
Now we have to convert the actors to the CPT. We wrote and ran a script to convert the plain text actors to CPTs and assign values.
</aside>
</section>
<section>
<div class="huge"><i class="far fa-grimace"></i> <i class="far fa-tired"></i></div>
<aside class="notes">
It didn't work exactly correctly. All the gay men were imported as cis heterosexual women.
</aside>
</section>
<section>
<div class="huge">I Am Sorry</div>
<aside class="notes">
I apologize for any misattributions of gender or sexual orientation. Going through all 2,693. Fixed right away.
</aside>
</section>
<section>
<h1>Actor Policy</h1>
<h2>
When in doubt, don’t out.
</h2>
<aside class="notes">
We understand it's not safe for everyone to be out. Self declared.
</aside>
</section>
<section>
<h1>Make Data Useful</h1>
<aside class="notes">
Now that we have all of this data, how can our visitors benefit from it?
</aside>
</section>
<section>
<h1>As of this morning</h1>
<h2>
3018 Characters<br>
994 Shows
</h2>
<aside class="notes">
These have all been entered by Mika and Me. What can we do with this data?
</aside>
</section>
<section>
<h2>Find shows you want to watch</h2>
<p>
<img src="img/filters.png" alt="" class="plain">
</p>
<aside class="notes">
With metadata and taxonomies you can create filters.
</aside>
</section>
<section>
<h2>Find characters you can relate to</h2>
<p>
<img src="img/filters2.png" alt="" class="plain">
</p>
<aside class="notes">
With metadata and taxonomies you can create filters.
</aside>
</section>
<section>
<h1>Reward Good</h1>
<aside class="notes">
The site started out of anger, a backlash to Bury Your Queers, but it continues out of positivity.
</aside>
</section>
<section>
<h2>Shows We <i class="fas fa-heart"></i></h2>
<p>
<img src="img/love.jpg" class="plain" alt="">
</p>
<aside class="notes">
In 2017 we added shows we love to the site. I wanted people to be able to find good shows quickly.
</aside>
</section>
<section>
<h2>Shows We <i class="fas fa-heart"></i></h2>
<ul>
<li class="fragment">Both Mika and I have to agree</li>
<li class="fragment">High quality and positive queer representation</li>
<li class="fragment">Plenty of screentime</li>
<li class="fragment">No shock-value death</li>
</ul>
<aside class="notes">
We have shows we love that don't meet the criteria. I love PoI, but it wont leave you feeling good about yourself.
</aside>
</section>
<section>
<h2>Stars <i class="fas fa-star"></i></h2>
<p>
<img src="img/pose.png" class="plain" alt="">
</p>
<aside class="notes">
In 2016 we added Stars. A play on the "Gold Star" Lesbian thing.
</aside>
</section>
<section>
<h2>Stars <i class="fas fa-star"></i></h2>
<p>
A star system to rank the queerness level of a show.
</p>
<aside class="notes">
A play on the "Gold Star" Lesbian thing.
</aside>
</section>
<section>
<h2>Gold <i class="fas fa-star" style="color: #ffd700;"></i></h2>
<p>
Openly queer creators, majority queer characters, out queer actors and stories made for a queer female audience.
</p>
<p>
Examples: <strong><em>The L Word</em></strong>, <strong><em>Take My Wife</em></strong> and <strong><em>Pose</em></strong>.
</p>
<aside class="notes">
All queer.
</aside>
</section>
<section>
<h2>Silver <i class="fas fa-star" style="color: silver;"></i></h2>
<p>
Openly queer creators, queer characters and stories made for a queer female audience, but may have no out queer actors or also has a significant number of stories geared towards a non-queer female audience.
</p>
<p>
Examples: <strong><em>Queer As Folk</em></strong>, <strong><em>Steven Universe</em></strong> and <strong><em>RED</em></strong>.
</p>
<aside class="notes">
</aside>
</section>
<section>
<h2>Bronze <i class="fas fa-star" style="color: #cd7f32;"></i></h2>
<p>
Openly queer creators, some queer characters and stories, made for a general audience. Also used for shows focused on a queer main character and their stories, but has no out queers involved with production or acting.
</p>
<p>
Examples: <strong><em>Sense8</em></strong>, <strong><em>American Horror Story</em></strong> and <strong><em>Janet King</em></strong>.
</p>
<aside class="notes">
</aside>
</section>
<section>
<h2>Intersectionality</h2>
<p>
<img src="img/intersectionality.jpg" class="plain" alt="">
</p>
<aside class="notes">
In 2018 we added Intersectionality as a taxonomy.
</aside>
</section>
<section>
<h2>Intersectionality</h2>
<blockquote>
The concept that oppressive institutions (racism, sexism, homophobia, transphobia, ableism, xenophobia, classism, etc.) are interconnected and cannot be examined separately from one another.
</blockquote>
<aside class="notes">
D&I is important to us, we rewrote all our content = more inclusive. We wanted to reward and help find shows with intersectionality.
</aside>
</section>
<section>
<h2>Jane the Virgin</h2>
<p>
<img src="img/jtv.jpg" class="plain" alt="">
</p>
<aside class="notes">
You can click on any of these and find shows with those intersections.
</aside>
</section>
<section>
<h2>Show Scores</h2>
<p>
<img src="img/one-mississippi.png" class="plain" alt="One Mississippi">
</p>
<aside class="notes">
In October 2017 we added show scoring to the site.
</aside>
</section>
<section>
<h2>Show Scores</h2>