Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
taskonsite-архив-перенесен
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dmitry Korolev
taskonsite-архив-перенесен
Commits
53973766
Commit
53973766
authored
Feb 05, 2016
by
Олег Гиммельшпах
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Редакция ссылок кнопок соцсетей в подвале
parent
197ab45e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
16 deletions
+18
-16
frontend/views/layouts/block/social.php
frontend/views/layouts/block/social.php
+12
-0
frontend/views/layouts/footer-index.php
frontend/views/layouts/footer-index.php
+3
-8
frontend/views/layouts/footer.php
frontend/views/layouts/footer.php
+3
-8
No files found.
frontend/views/layouts/block/social.php
0 → 100644
View file @
53973766
<?php
use
common\models\Settings
;
?>
<ul
class=
"social_link"
>
<?php
$s
=
Settings
::
getValue
(
'social-link-vk'
);
if
(
$s
)
:
?>
<li><a
href=
"
<?=
$s
?>
"
class=
"soc_item"
><i
class=
"fa fa-vk"
></i></a></li>
<?
endif
;
?>
<?php
$s
=
Settings
::
getValue
(
'social-link-fb'
);
if
(
$s
)
:
?>
<li><a
href=
"
<?=
$s
?>
"
class=
"soc_item"
><i
class=
"fbicon"
></i></a></li>
<?
endif
;
?>
<?php
$s
=
Settings
::
getValue
(
'social-link-youtube'
);
if
(
$s
)
:
?>
<li><a
href=
"
<?=
$s
?>
"
class=
"soc_item"
><i
class=
"fa fa-youtube"
></i></a></li>
<?
endif
;
?>
<?php
$s
=
Settings
::
getValue
(
'social-link-instagram'
);
if
(
$s
)
:
?>
<li><a
href=
"
<?=
$s
?>
"
class=
"soc_item"
><i
class=
"fa fa-instagram"
></i></a></li>
<?
endif
;
?>
<?php
$s
=
Settings
::
getValue
(
'social-link-twitter'
);
if
(
$s
)
:
?>
<li><a
href=
"
<?=
$s
?>
"
class=
"soc_item"
><i
class=
"fa fa-twitter"
></i></a></li>
<?
endif
;
?>
<?php
$s
=
Settings
::
getValue
(
'social-link-google'
);
if
(
$s
)
:
?>
<li><a
href=
"
<?=
$s
?>
"
class=
"soc_item"
><i
class=
"gplusicon"
></i></a></li>
<?
endif
;
?>
</ul>
\ No newline at end of file
frontend/views/layouts/footer-index.php
View file @
53973766
...
...
@@ -100,14 +100,9 @@ use common\modules\bids\models\Bid;
</div>
</div>
<div
class=
"col-md-6 col-xs-6 col-sm-12"
>
<ul
class=
"social_link"
>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fa fa-vk"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fbicon"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fa fa-youtube"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fa fa-instagram"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fa fa-twitter"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"gplusicon"
></i></a></li>
</ul>
<?php
echo
$this
->
render
(
'block/social'
);
?>
</div>
<div
class=
"col-md-3 col-xs-3 col-sm-12"
>
<div
class=
"taskon"
><img
src=
"/images/taskon.png"
height=
"31"
width=
"100"
alt=
""
></div>
...
...
frontend/views/layouts/footer.php
View file @
53973766
...
...
@@ -18,14 +18,9 @@
</div>
</div>
<div
class=
"col-md-6 col-xs-6 col-sm-12"
>
<ul
class=
"social_link"
>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fa fa-vk"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fbicon"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fa fa-youtube"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fa fa-instagram"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"fa fa-twitter"
></i></a></li>
<li><a
href=
"#"
class=
"soc_item"
><i
class=
"gplusicon"
></i></a></li>
</ul>
<?php
echo
$this
->
render
(
'block/social'
);
?>
</div>
<div
class=
"col-md-3 col-xs-3 col-sm-12"
>
<div
class=
"taskon"
><img
src=
"/images/taskon.png"
height=
"31"
width=
"100"
alt=
""
></div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment