2022-10-12 21:38:50 +03:00
|
|
|
{{ define "main" }}
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2022-10-20 00:51:08 +03:00
|
|
|
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12">
|
2022-10-12 21:38:50 +03:00
|
|
|
<div class="package-thumbnail gray-bg">
|
2022-10-25 02:58:28 +03:00
|
|
|
<img class="package-image" src="{{- .thumb_image_url -}}" alt="{{- .name -}}" style="width:100%; height:100%;">
|
2022-10-12 21:38:50 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-20 00:51:08 +03:00
|
|
|
<div class="col-xl-8 col-lg-8 col-md-6 col-sm-12 col-12">
|
2022-10-14 04:46:45 +03:00
|
|
|
<h3>{{- .Title -}}</h3>
|
|
|
|
{{ range where $.Site.Data.packages "name" .Title }}
|
|
|
|
<p>{{- .desc -}}</p>
|
|
|
|
{{ if not (eq .homepage "") }}
|
|
|
|
{{- partial "detail-btn-large.html" .homepage -}}
|
2022-10-17 21:32:50 +03:00
|
|
|
{{end}}
|
|
|
|
{{ end }}
|
2022-10-12 21:38:50 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
2022-10-20 00:17:47 +03:00
|
|
|
<!-- Copy to clipboard field -->
|
2022-10-19 03:05:14 +03:00
|
|
|
|
2022-10-17 21:36:13 +03:00
|
|
|
<hr>
|
2022-10-19 03:05:14 +03:00
|
|
|
<div class="row button-container">
|
|
|
|
<input class="one-liner" type="text" value="$ sh <(curl tea.xyz) install {{- .Title -}}" id="myInput" readonly>
|
2022-10-17 21:36:13 +03:00
|
|
|
|
2022-10-20 00:17:47 +03:00
|
|
|
<button class="clipboard-copy" id="copy-icon" onclick="myFunction()" data-bs-toggle="modal" data-bs-target="#exampleModal">copy</button>
|
2022-10-19 03:05:14 +03:00
|
|
|
</div>
|
|
|
|
<hr>
|
2022-10-17 21:36:13 +03:00
|
|
|
|
|
|
|
<style>
|
|
|
|
|
2022-10-19 03:05:14 +03:00
|
|
|
@media only screen and (min-width: 768px) {
|
|
|
|
|
|
|
|
.one-liner{
|
|
|
|
width: 85%;
|
|
|
|
padding: 2.455vw 4.185vw;
|
|
|
|
border-radius: 0px;
|
|
|
|
border: none;
|
|
|
|
background-color: #1a1a1a !important;
|
|
|
|
font-family: "pp-neue-machina";
|
2022-10-20 00:17:47 +03:00
|
|
|
color:#ffffff;
|
2022-10-19 03:05:14 +03:00
|
|
|
font-size: 2vw;
|
|
|
|
border-left: 2px solid #949494;
|
|
|
|
}
|
|
|
|
|
|
|
|
.one-liner:focus{
|
|
|
|
border:none;
|
|
|
|
outline: none;
|
|
|
|
border-left: 2px solid #949494;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clipboard-copy{
|
|
|
|
height: 8.371vw;
|
|
|
|
width: 14%;
|
|
|
|
font-family: "pp-neue-machina";
|
2022-10-20 00:17:47 +03:00
|
|
|
color:#ffffff;
|
2022-10-19 03:05:14 +03:00
|
|
|
font-size: 2.1vw;
|
|
|
|
float:right;
|
|
|
|
background-color: #1a1a1a !important;
|
|
|
|
border: none;
|
|
|
|
border-right: 2px solid #949494;
|
|
|
|
transition: 0.2s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clipboard-copy:hover{
|
|
|
|
background-color: #00ffd0 !important;
|
|
|
|
color: #1a1a1a !important;
|
|
|
|
box-shadow: inset 0vw 0vw 0vw 0.558vw #1a1a1a !important;
|
|
|
|
}
|
|
|
|
|
2022-10-17 21:36:13 +03:00
|
|
|
}
|
|
|
|
|
2022-10-19 03:05:14 +03:00
|
|
|
@media only screen and (min-width: 576px) and (max-width: 768px) {
|
|
|
|
|
|
|
|
.one-liner{
|
|
|
|
width: 85%;
|
|
|
|
padding: 5vw 4vw;
|
|
|
|
border-radius: 0px;
|
|
|
|
border: none;
|
|
|
|
background-color: #1a1a1a !important;
|
|
|
|
font-family: "pp-neue-machina";
|
2022-10-20 00:17:47 +03:00
|
|
|
color:#ffffff;
|
2022-10-19 03:05:14 +03:00
|
|
|
font-size: 3.5vw;
|
|
|
|
border-left: 2px solid #949494;
|
|
|
|
}
|
|
|
|
|
|
|
|
.one-liner:focus{
|
|
|
|
border:none;
|
|
|
|
outline: none;
|
|
|
|
border-left: 2px solid #949494;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clipboard-copy{
|
|
|
|
padding: 5vw 4vw;
|
|
|
|
width: 14%;
|
|
|
|
font-family: "pp-neue-machina";
|
2022-10-20 00:17:47 +03:00
|
|
|
color:#ffffff;
|
2022-10-19 03:05:14 +03:00
|
|
|
font-size: 3.5vw;
|
|
|
|
float:right;
|
|
|
|
background-color: #1a1a1a !important;
|
|
|
|
border: none;
|
|
|
|
border-right: 2px solid #949494;
|
|
|
|
transition: 0.2s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clipboard-copy:hover{
|
|
|
|
background-color: #00ffd0 !important;
|
|
|
|
color: #1a1a1a !important;
|
|
|
|
box-shadow: inset 0vw 0vw 0vw 0.558vw #1a1a1a !important;
|
|
|
|
}
|
|
|
|
|
2022-10-17 21:36:13 +03:00
|
|
|
}
|
|
|
|
|
2022-10-19 03:05:14 +03:00
|
|
|
@media only screen and (max-width: 576px) {
|
|
|
|
|
|
|
|
.one-liner{
|
|
|
|
width: 100%;
|
|
|
|
padding: 7.5vw 7.5vw !important;
|
|
|
|
border-radius: 0px;
|
|
|
|
border: none;
|
|
|
|
background-color: #1a1a1a !important;
|
|
|
|
font-family: "pp-neue-machina";
|
2022-10-20 00:17:47 +03:00
|
|
|
color:#ffffff;
|
2022-10-19 03:05:14 +03:00
|
|
|
text-align: center !important;
|
|
|
|
font-size: 4vw;
|
|
|
|
border-left: 2px solid #949494;
|
|
|
|
}
|
|
|
|
|
|
|
|
.one-liner:focus{
|
|
|
|
border:none;
|
|
|
|
outline: none;
|
|
|
|
border-left: 2px solid #949494;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clipboard-copy{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-17 21:36:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function myFunction() {
|
|
|
|
// Get the text field
|
|
|
|
var copyText = document.getElementById("myInput");
|
|
|
|
|
|
|
|
// Select the text field
|
|
|
|
copyText.select();
|
|
|
|
copyText.setSelectionRange(0, 99999); // For mobile devices
|
|
|
|
|
|
|
|
// Copy the text inside the text field
|
|
|
|
navigator.clipboard.writeText(copyText.value);
|
|
|
|
|
2022-10-20 00:17:47 +03:00
|
|
|
//Change button text to 'copied'
|
|
|
|
document.getElementById("copy-icon").innerHTML = "copied!";
|
2022-10-17 21:36:13 +03:00
|
|
|
}
|
|
|
|
</script>
|
2022-10-12 21:38:50 +03:00
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
.package-thumbnail{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
{{ end }}
|