-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
146 lines (128 loc) · 5.38 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
---
# Copyright 2019 OpenPrinting
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
title: "OpenPrinting"
layout: splash
date: 2016-03-23T11:48:41-04:00
header:
overlay_color: "#000"
overlay_filter: "0.5"
overlay_image: /assets/images/rotation_pantone.jpg
actions:
- label: "Learn More"
url: "/about-us/"
- label: "Find a Printer"
url: "/printers/"
excerpt: "We make printing just work!"
intro:
- excerpt: "OpenPrinting develops IPP-based printing technology for Linux®/Unix® operating systems."
feature_row:
- image_path: /assets/images/OpenPrintingBox.png
alt: "About Us"
title: "About Us"
excerpt: "Learn more about OpenPrinting, how it works, the people involved, and the projects maintained by it"
url: "/about-us"
btn_label: "Read More"
btn_class: "btn--primary"
- image_path: /assets/images/contribute.png
title: "Contribute"
excerpt: "Know how you can be part of an excellent community and help improve printing experience for millions of users"
url: "/contribute"
btn_label: "Read More"
btn_class: "btn--primary"
- image_path: /assets/images/cups.png
title: "CUPS"
excerpt: "CUPS is the standards-based, open source printing system that is used on Linux® and other operating systems."
url: "https://openprinting.github.io/cups/"
btn_label: "Read More"
btn_class: "btn--primary"
database_intro:
- excerpt: "Most modern printers work using OpenPrinting software without additional drivers or software.<br><small>OpenPrinting also hosts a printer compatibility database of legacy printers supported by free software drivers.</small>"
database_row:
- image_path: /assets/images/ipp-everywhere.png
alt: "Driverless Printers"
title: "Driverless Printers"
excerpt: "Most modern printers work 'out of the box' with OpenPrinting software. Browse the thousands of driverless printers."
url: "/printers"
btn_label: "Browse"
btn_class: "btn--primary"
- image_path: /assets/images/printer.png
alt: "Foomatic Printer Database"
title: "Legacy Printers"
excerpt: "The Foomatic printer database lists all of the printers that are supported by free software printer drivers."
url: "https://openprinting.org/printers"
btn_label: "Browse"
btn_class: "btn--primary"
- image_path: /assets/images/wsl-printing-icon.png
alt: "Legacy Printers under Windows"
title: "Windows?!"
excerpt: "Our Printer Applications revive old printers under current Windows, any model which works under Linux."
url: "/wsl-printer-app/"
btn_label: "Read More"
btn_class: "btn--primary"
collaboration_intro:
- excerpt: "OpenPrinting collaborates with standards groups and participates in coding/documentation programs."
collaboration_row:
- image_path: assets/images/pwg.png
alt: "IEEE-ISTO Printer Working Group"
title: "Printer Working Group"
excerpt: "OpenPrinting collaborates with the PWG's Internet Printing Protocol workgroup to support this ubiquitous printing standard."
url: "https://www.pwg.org/ipp/"
btn_label: "Read More"
btn_class: "btn--primary"
- image_path: assets/images/gsoc.jpeg
alt: "GSoC - OpenPrinting"
title: "GSoC - OpenPrinting"
excerpt: "OpenPrinting participates in the GSoC program under its umbrella organization The Linux Foundation."
url: "/gsoc/"
btn_label: "Read More"
btn_class: "btn--primary"
- image_path: assets/images/gsod.jpg
alt: "GSoD - OpenPrinting"
title: "GSoD - OpenPrinting"
excerpt: "OpenPrinting participates in the GSoD program under its umbrella organization The Linux Foundation."
url: "/gsod/"
btn_label: "Read More"
btn_class: "btn--primary"
---
{% include feature_row id="intro" type="center" %}
<div class = "container-fluid row" id= "news" >
<div class="feature__wrapper">
{% for post in site.posts limit:3 %}
<div class="col-lg-4">
<div class="post">
<div class="list__item">
<a href="{{post.url}}">
<h2 style="margin-top: 0px" class="archive__item-title">{{ post.title }} </h2>
</a>
{% if post.read_time %}
<p class="page__meta">
Author: <b>{{ post.author }}</b>
Date: <b>{{post.date | date: '%B %d, %Y'}}</b>
</p>
{% endif %}
{% if post.excerpt %}
<p class="archive__item-excerpt" itemprop="description">
{{ post.excerpt | markdownify | strip_html | truncate:200}}
</p>
{% endif %}
</div>
</div>
<br>
</div>
{% endfor %}
</div>
</div>
{% include feature_row %}
{% include feature_row id="database_intro" type="center" %}
{% include feature_row id="database_row" %}
{% include feature_row id="collaboration_intro" type="center" %}
{% include feature_row id="collaboration_row" %}